Introductions/Icebreaker
Review the Internet
HTML Basics and Validation
Creating a 404 Page
By the end of this section, you should be able to:
Fix all of the validation errors in dogs.html
and also
make it match the CSE 154 style guide.
<!DOCTYPE html>
<html>
<body>
<title>Dogs are the Best!</title>
<h1>Dogs are the best!!!</h1>
<h2>Why dogs are <em>the best</h2></em>
<p>
<ul>
<li>Doggos are happy & cuddly</li>
<li>Doggos make people happy too</li>
<li>They're obviously the best</li>
</ul>
</p>
<h2>Did you know?</h2>
Doggies are the best
<h2>Dog pictures:</h2>
<img src="images/puppy-mowgli.jpg"></img>
<img src="images/moar-puppy-mowgli.jpg"></img>
</body>
</html>
</!DOCTYPE>
HTML (Bad)
<!DOCTYPE html>
<html>
<head>
<title>Dogs are the Best!</title>
</head>
<body>
<h1>Dogs are the best!!!</h1>
<h2>Why dogs are <em>the best</em></h2>
<ul>
<li>Doggos are happy & cuddly</li>
<li>Doggos make people happy too</li>
<li>They're obviously the best</li>
</ul>
<h2>Did you know?</h2>
<p>Doggies are the best</p>
<h2>Dog pictures:</h2>
<p>
<img src="images/puppy-mowgli.jpg" alt="cute pupper"/>
<img src="images/moar-puppy-mowgli.jpg" alt="moar cute pupper"/>
</p>
</body>
</html>
HTML (Good)
Why are 404 pages important?
Examples of "bad" and "good" 404 pages
Steps to creating a 404 page
<img>
tag
(TA's just found too many awesome ones, so here are some for your CP0 inspiration/browsing pleasure!
Here are two great articles with some more tips on how/why to design your own!