Document of what we're doing in class
Below are some different sheet that show how to use tags, etc.
So far, we've worked with the general set up with HTML:
<!DOCTYPE html>
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>Document content goes here.....</p>
</body>
</html>
We've also worked on a few types of lists:
<ol> ordered lists: numbered
<ul> bulleted lists
<li> line item
ex:
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol type="a">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
We've discovered that changing even one end tag's placement can change the look of lists completely.
Try this Scavenger Hunt as you familiarize yourself with HTML (Make a copy of it on your Google Drive so you can add your answers. Share it with me. Winner gets a prize.)
Beginner HTML Info and How-to
Write your own HTML and preview it live!
W3 Intro to HTML & their Try it Yourself page
List of HTML Font Colors