Jul 29, 2024
html
, head
, body
).GA_site
).index.html
file.<!DOCTYPE html>
<html>
<head>
<title>Mike's Website</title>
</head>
<body>
Hello World
</body>
</html>
<!DOCTYPE html>
: Declares the document type.<html>
: Root container of the document.<head>
: Contains metadata about the document.<body>
: Contains the content of the document.<html>
) is the parent of <head>
and <body>
, which are siblings.<h1>
to <h6>
): Define section headings.<p>
): For block text.<br>
): For line breaks.<hr>
): For horizontal lines.<!-- Comment here -->
to leave developer notes.div
, h1
, p
).span
, links).<a href="...">Link Text</a>
for external or internal links.target="_blank"
for opening links in a new tab.<img src="image.jpg" alt="description">
width
and height
.<video src="video.mp4" controls></video>
autoplay
, loop
, and poster
.<ul><li>Item</li></ul>
<ol><li>Item</li></ol>
<dl><dt>Term</dt><dd>Description</dd></dl>
<table>
, <tr>
(table row), <th>
(header), and <td>
(data).<table>
<tr><th>Header</th></tr>
<tr><td>Data</td></tr>
</table>
<caption>
for table titles.<input type="text">
<input type="password">
<input type="checkbox">
<input type="radio">
<form>
<input type="text">
</form>
<iframe src="..." width="1000" height="800"></iframe>