מבנה בסיסי של דף html

<html>

        <head>

        </head>

        <body>

        <script>

        </script>

        </body>

</html>

לכל תגית אפשר לצרף תכונה שנקראת id (מזהה ייחודי).

תגיות

כותרת

<h1>כותרת</h1>

כותרת יותר קטנה

<h2>כותרת</h2>

כותרת יותר קטנה מהקודמת

<h3>כותרת</h3>

tr - table row

td - table data

טבלה עם שורה אחת, ו3 עמודות

<table>

  <tr>

    <td>x</td>

    <td>o</td>

    <td>x</td>

  </tr>

</table>

מקור src is the address of the picture. It better to be jpg,png,jpeg

רוחב width is the width of the image

<img id='img1' src='pic.jpg' width=200>

ירידת שורה אחת

<br>

תיבת טקסט

הסוגים (type) הם:

text, email, password, number, date, datetime-local, month, week, time, url, search, tel, color, checkbox, radio, file, hidden, image, reset, submit

<input type=’text’>

יצירת כפתור

<button>click me</button>