What is the Header?
Introduction to the <head> Tag
<head> TagCommon Elements Inside the <head> Tag
<head> Tag<head> <title>My Web Page</title> <meta charset="UTF-8"> <meta name="description" content="A brief description of my webpage"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <style> /* This is where you would put page specific CSS. */ body{ text-align: center; } </style> <script src="script.js"></script> </head>
Explanation of Important Element
The Role of Metadata
Sample Document Layout:
Last updated