Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
web1/web-hw.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
79 lines (72 sloc)
1.94 KB
This file contains 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> | |
<link rel="stylesheet" href="web-hw.css"> | |
</head> | |
<body> | |
<main> | |
<header> | |
<h1>Welcome to my page.</h1> | |
<p>This is just a bunch of boxes.</p> | |
<p>And sentences.</p> | |
</header> | |
<article> | |
<header> | |
<h1>Article Title 1</h1> | |
<p>We're messing around with some...stuff. And things.</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1>Article Title 2</h1> | |
<p>We're messing around with some...stuff. And things</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1>Article Title 3</h1> | |
<p>We're messing around with some...stuff. And things.</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1>Article Title 4</h1> | |
<p>We're messing around with some...stuff. And things.</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
<h2>And then dude threw in a list:</h2> | |
<ul> | |
<li>Because he's a sadist.</li> | |
<li>Because his class is too hard</li> | |
<li>And we hate him.</li> | |
</ul> | |
</section> | |
<footer> | |
Don't forget this little footer. | |
</footer> | |
</article> | |
<footer> | |
© 2015 the greatest class ever. Joel also threw in another list. | |
<ul> | |
<li>Do the CSS.</li> | |
<li>Upload the files.</li> | |
<li>Send Joel the link.</li> | |
</ul> | |
</footer> | |
</main> | |
</body> | |
</html> |