Skip to content

Instantly share code, notes, and snippets.

@aspencer8111
Last active December 13, 2017 17:41
Show Gist options
  • Save aspencer8111/c0efa32d801f90f8b8dde32264e7c1ac to your computer and use it in GitHub Desktop.
Save aspencer8111/c0efa32d801f90f8b8dde32264e7c1ac to your computer and use it in GitHub Desktop.
html-starter-example
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    
  </body>
</html>
  1. What does the doctype tag do? Send your answer to your mentor. The doctype tag is an integral part of HTML. It tells the browser how to render the page.
  2. What are "nested" elements? Send your answer to your mentor. Any elements that are "inside" of others are what are known as nested elements.
  3. 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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment