HTML

(Home)

Top 3 Resources 
Resource NCSA A Beginners Guide
Resource HTML An Interactive Tutorial For Beginners
Resource W3C HTML
Quick Reference
Break <br>
Bold <B>Hello, welcome to my new site!</B>
Fonts <font name='Arial' size='12' color='ffffff'>my Text</font>
Italic <I>Hello, welcome to my new site!</I>

Link

<A HREF="http://www.yahoo.com">Click Here To Go To Yahoo.com</a>

Image Link

<A HREF="http://www.thehtmlsource.com"><IMG SRC="yourfile.gif"></A>
Frames  
  <html>
<head>
<title>Your Web Page Title</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
</html>
RollOver <style type="text/css">A:hover { COLOR: #000000; BACKGROUND-COLOR: #bdb76b }</style>
Target Right Side <a href="http://www.yahoo.com" target="rightside">Yahoo.com</a>
Target Right Side (Image Link) <a href="http://www.yahoo.com" target="rightside"><img src="image.gif"><:/a>
Opens Yahoo in New Window <a href="http://www.yahoo.com" target="_blank">Click Here</a>
No Scrolling Left Side <frame src="left.html" name="leftside" scrolling="no">
<frame src="right.html" name="rightside">
No Borders <frameset cols=30%,70% border="0" frameborder="0" framespacing="0">
Code