Fun Stuff

- If you want to look at some scary code, check out the Google homepage. (remember ctrl+u)

Quiz 1

<html>
<head>
<title>Quiz #1</title>
</head>

<body>
<h1>Basic HTML Page</h1>

<hr />

<figure>
<img src="images/grumpycat2.png" alt="This is the picture of a grumpy cat." />
<figcaption>Figure #1</figcaption>
</figure>

<p>Let<br />
Us<br />
Begin<br /></p>

<ul>
<li>This</li>
<li>Is</li>
<li>A</li>
<li>List</li>
</ul><!-- This line closes the list -->

<ol>
<li>This</li>
<li>Is also</li>
<li>A</li>
<li>List</li>
</ol>

<h2>So Far So Good</h2>

<p>Lorem ipsum dolor sit amet, <b>consectetur adipiscing elit</b>. Vivamus malesuada
libero ac neque porta semper.</p>
<p>Lorem ipsum dolor sit amet, <i>consectetur adipiscing elit</i>. Vivamus malesuada
libero ac neque porta semper.</p>

<a href="http://markdpepper.com/3340/" target="_blank">Course Site</a>
<p>Email me <a href="mailto:mark.pepper@uvu.edu">here</a></p>

</body>
</html>


AND the following is what the page would look like, though the picture is a little screwy because I just copied over the code and not the picture. That's why we use alt tags!

Quiz #1

Basic HTML Page


This is the picture of a grumpy cat.
Figure #1

Let
Us
Begin

  • This
  • Is
  • A
  • List
  1. This
  2. Is also
  3. A
  4. List

So Far So Good

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada libero ac neque porta semper.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus malesuada libero ac neque porta semper.

Course Site

Email me here

No comments:

Post a Comment