Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JohnnyHandy/617787fc3c8ce8327789fc8561db5294 to your computer and use it in GitHub Desktop.
Save JohnnyHandy/617787fc3c8ce8327789fc8561db5294 to your computer and use it in GitHub Desktop.
Exercise HTML section 3 class 21
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Things I've learned</h1>
<h2> Internet Basics</h2>
<ol>
<li>HTTP requests</li>
<li>IP Adress</li>
<li>Servers</li>
<h2> HTML </h2>
<ul>
<li> Stands for <strong>Hyper Text Markup Language</strong></li>
<li>Lots of tags</li>
<ul>
<li>BoilerPlate</li>
<ol>
<li>Doctype</li>
<li>HTML</li>
<li>Head</li>
<ol>
<li>Title</li>
</ol>
<li>Body</li>
</ol>
<li> Headings</li>
<li>Paragraph</li>
<li>em</li>
<li><strong>strong</strong></li>
</ul>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment