This is a pod assignment 10 points. You may work with your pod on this but you must submit individually. You should not be giving the answers directly to your podmates. This assignment will help you get used to HTML, using your text editor, and viewing your work in a browser window.
Save this shell file as shell.html
. You can copy
this file to save typing this minimal boilerplate.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>PUT TITLE HERE</title>
</head>
<body>
<h1>Minimal HTML File</h1>
</body>
</html>
Now make a copy of this file named tagLab1.html
.
In it, you will replicate this page.
Recommended Working Configuration
- Open tagLab1.html in your browser using the Open... menu item.
- Open the file in VSCode using its Open... menu item.
- As you edit, save in VSCode, then refresh the browser and you will see your progress.
- It is very smart to save and valdiate often so you only have to look in a small place for a problem.
HELP! What is this stuff? Follow these steps and you will be in fat city. You will learn how to use W3Schools to find what you need to know to use unfamiliar tags correctly so they become familiar tags.
- Open a browser tab to W3Schools
- Click on HTML REFERENCE (the grey button).
- Look up the <p> tag.
- Now hit the green "Try it yourself" button.
- Now you know how to make a paragraph. Type some of the paragraphs into the document.
- Look up tag <h1>.
- Now hit the green "Try it yourself" button.
- Et voila! You know how to make HTML headings. Add them.
- Now look up the tag <ol> and you have the idea for the rest!