Creating A Web Page Lab Assignment: Get Verify
Creating A Web Page Lab Assignment: Get Verify
Goal Create a simple web page Create the file: inclass.txt in your www directory. Do you remember how to get to your www directory? Do you remember how to verify that you are in the www directory? Do you remember how to create the file using xemacs? You must complete this exercise in class during todays lab session.
ADVICE!!!
Use a simple editor! notepad is a simple editor xemacs is a simple editor notepad++ is a simple editor Microsoft Word is NOT a simple editor
</html>
A begin and a partner end tag. The begin and end tags are usually spelled the same, but the end tag also contains a slash.
Throughout this exercise, save your work periodically View your changes by refreshing your web browser.
<html> <head> <title> My Favorite Movies </title> </head> <body> These are my favorite movies. <ul> <li>Whats Up Doc?</li> <li>Shrek</li> <li>The Fisher King</li> </ul> </body> </html>
<html> <head> <title> My Favorite Movies </title> </head> <body> These are my favorite movies. <ul> <li>Whats Up Doc?</li> <li>Shrek</li> <li>The Fisher King</li> </ul> </body> </html>
<html> <head> <title> <h1> My Favorite Movies </h1> </title> </head> <body> These are my favorite movies. <ul> <li>Whats Up Doc?</li> <li>Shrek</li> <li>The Fisher King</li> </ul> </body> </html>
<html> <head> <title> <h1> My Favorite Movies </h1> </title> </head> <body> <p>These are my favorite movies. <ul> <li>Whats Up Doc?</li> <li>Shrek</li> <li>The Fisher King</li> </ul> </p> </body> </html>
<body> <p>These are my favorite movies. <ul> <li>Whats Up Doc?</li> <li>Shrek</li> <li>The Fisher King</li> </ul> </p> <hr> </body> </html>
<hr> <p> These are my favorite foods <ol> <li>Pizza</li> </ol> </p> </body> </html>
Create this entire paragraph, Which contains a list of your five most favorite foods.
<hr> <p> These are my <strong>favorite</strong> foods <ol> <li>Pizza</li> </ol> </p> </body> </html>
Final Step
Save your work View your web page Show your instructor your completed work You will receive your 25 points for homework 2, part 4, once your instructor has inspected your work