Created
August 16, 2018 14:11
-
-
Save JohnnyHandy/617787fc3c8ce8327789fc8561db5294 to your computer and use it in GitHub Desktop.
Exercise HTML section 3 class 21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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