<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
- What does the
doctype
tag do? Send your answer to your mentor. Thedoctype
tag is an integral part of HTML. It tells the browser how to render the page. - What are "nested" elements? Send your answer to your mentor. Any elements that are "inside" of others are what are known as nested elements.
- Give an example of a tag that does not render content directly to the screen and give an example of a tag that does. Send your answer to your mentor.
The
<head>
tag contains metadata about the html document, while the<body>
tag displays content to a page.