CIS 140 Lab 6

At the beginning of the class, I had you create a website and add some text to it. Now, I want you to place more information on your website that will show your name and a picture as well as some of your favorite interests. Below is the code that is necessary to do this. As I have shown you in class, copy the following code to your web document index.html and make it your own (i.e. your name instead of mine, a picture of either you or something you like and your favorite interests).

<html>
   <head>
      <title>This is Nicole's Web Site</title>
   </head>
   <body>
      <h1>This is Nicole Cook's Web Site</h1>

<br>

      <img src="nicole.jpg">

<p>

Some of my favorite interests are:
<ul>
    <li>Skydiving
    <li>Running
    <li>Snow Skiing
</ul>

</body>
</html>



Return to CIS 140 Labs