17
Jun 09HTML / CSS
1st Session
1. review the HTML tutorials at w3schools.org,
from HTML HOME until HTML Lists.
2. Make a web page named myname.html (i.e. mine would be sebastian.html)
with the following:
- a page title (goes in the header section);
- a heading (i.e h1)
- a subheading (i.e h4)
- a paragraph which contains: ( p )
- regular text
- one bold word or sentence ( strong )
- a sentence in italics ( em)
- a link to a website that opens on the same window ( a )
- a link that opens in a different window or tab. ( a, look up the “target” atrribute in the links section )
- an image ( img )
- an image that is a link ( a + img );
- a table
- an unordered list with three items ( ul and li )
( relevant tags in parenthesis, if you need to look them up, check out the tag list in the same w3schools page )
Please bring the html page to class (remember to include the image(s) in the same folder as the html file)