1. Manage your locker account
2. Create a simple HTML document using a text editor
– Working with
o Paragraph
o Link break
o Format
o Lines
o List
3. Pre-publish testing
4. Uploading
5. Post-publish testing: http://locker.uky.edu/~your_userid
6. An overview of static page design
Create the following HTML document called welcome.html:
<HTML>
<! This is my first HTML document>
<HEAD>
<TITLE>Breakfast Menu</TITLE>
</HEAD>
<BODY>
<P ALIGN=CENTER><B>
<FONT COLOR="GREEN" SIZE=5>
Breakfast Menu</FONT><BR>
Served 6:30 a.m. - 11:00 a.m.</B></P>
<HR>
<DL>
<DT>Smoked Trout
<DD>Fluffy scrambled eggs with smoked trout, goat cheese & scallions served with oven-roasted potatoes & toast. 5.45
<DT>French Toast
<DD>Three thick slices of French bread dipped in egg batter and served crisp & golden brown with syrup. 3.25
<DT>Belgian Waffle
<DD>Crisp malt Belgian waffle & syrup. 3.95
<DT>Breakfast Fruit Plate
<DD>Fresh seasonal fruit with yogurt or cottage cheese & Kelsey's famous Bran Muffin. 3.95
<DT>Huevos Rancheros
<DD>Two eggs on a flour tortilla with thick chili sauce, shredded Monterey Jack & homemade salsa. 4.95
<DT>Eggs
<DD>Any style with oven-roasted potatoes & toast. 2.95
<DT>Lox & Bagels
<DD>Nova lox, cream cheese, onion, cucumber & tomatoes. 5.95
</DL>
</BODY>
</HTML>