Here's an example of some webpage HTML, and what it would look like in a browser.
<HTML> <HEAD> <TITLE>My First Webpage</TITLE> </HEAD> <BODY> <H3>My First Big Webpage</H3> <P> Here's a <B>paragraph</B> of <I>text</I>. </P> <P> Here's a <BR>forced line break. </P> <P> Here's a numbered list... </P> <OL> <LI>Lorem</LI> <LI>ipsum</LI> </OL> <P> Here's an <IMG src="image.jpg" alt="Graphic: picture of the word Image."></IMG> </P> <P> And here's a <A href="basics.html>link</A>. <P> </BODY> </HTML> |
My First Big WebpageHere's a paragraph of text. Here's a forced line break. Here's a numbered list... 1) Lorem 2) ipsum Here's an And here's a link. |
If you can manage that lot, you're doing ok. Take a rest and try out some of what you've learnt before going on to the advanced stuff. If you want an exercise to do, try to recreate this page on your local harddrive without looking at the source code. Once you're happy with it check the code against your own.
Go forward to learn about tables in the advanced section.