Inside the <head>
tag, there is one tag that is always included: <title>
, but there are others that are just as important:<title>
This is where we insert the page name as it will appear at the top of the browser window or tab.<meta>
This is where information about the document is stored: character encoding, name (page context), description.
Let’s try out a basic <head>
section:
<head>
<title>My First Webpage</title>
<meta charset="UTF-8">
<meta name="description" content="This field contains information about your page. It is usually around two sentences long.">.
<meta name="author" content="Conor Sheils">
</header>
Leave a Reply