Let's disect this HTML:
<html>
<head>
<title>My Page</title>
</head>
<body>
Hi, here is some text.
</body>
</html>
Let's review. is the start of the document, and is the end.
The next tag is . The head of the document is where we specify the <title>, which shows up as follows:
In between the two tags is where we specify the content of the web page. The content can include images, video, links, and more.
Leave a comment