In this lab we are going to explore the relationship between your computer and "the web".
Answer the following question:
In the file menu, select "Save page as" and save it to your local machine (if you doing this step in class, save it to your H: drive).
Answer the following questions:
Paste the HTML source code into the file and save it on your H: drive as "index.html"
Answer the following questions:
Create a new HTML page with both the questions and the answers. Be sure the HTML file has the following features:
A DOCTYPE declaration:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
The following meta tag in the <head> section:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta>
An ordered or an unordered list
Unordered List:
<ul> <li>text</li> </ul>
Ordered List:
<ol> <li>text</li> </ol>
Remember, the lists can be nested within one another:
<ul> <li>text <ol> <li>text</li> </ol></li> </ul>
It may be useful to use indentation to keep track of what level you are on. That will certainly make it easier to read the code.
To submit this assignment upload it into Netfiles and then send me a URL.
Out of 25 points total.