HTML for beginners
1. in your web page editor (notepad for windows), type in
<html>
<head>
<title>your title goes here</title>
</head>
<body> All your content goes here</body>
</html>
2. To add a image:
Add this to the body section
<div align="center"><img src="Your url here" width="the width" height="the height" alt="your name here"></div>
3. To add a background
<body background="name.gif">
4. To add a plain backround colour:
<body bgcolor="#000000" > You need to put a hex code where the 00000 is. Visit Dynamic Drive for a list of hex codes.
5. Adding diff types of text:
large text= <h1> type text here</h1>
A paragraph= <p> text here</p>
A new line <br>
Text Bold =<b>This will make your text bold</b>
Italic Text= <i>This will italicize your text</i>
Underlined text= <u>This will underline your text</u>
Changing font and size = <font face="your font" size="your size #" color="#your color number">your text goes here</font>
6. Making A Text Link
<a href="http://address you want text to link to">Text Goes Here</a>
7. Add A Form Button Link
<H3>This form is inoperational!</H3> <Provisional users can't create forms method="get" action="http://address you want to link to"><input type="submit" value="click here"></form>
8. Making A Hyperlink Image
<a href="address you want image to click to"><img src="your file name.gif(or jpg)" border="0"></a>
9. Email Link=
<a href="mailto:your address">your name</a>
10. Email Link With Image= <div align="center"><a href="mailto:your address"><img src="your filename.gif" width="000" height="000" alt="E-Mail" border="0"></a></div>
Now Here Are Some Extras To Put On
11. A Basic Table=
<table border="1"> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> <tr> <td>Cell 3</td> <td>Cell 4</td> </tr> </table>
12. Making A Scrolling Marquee=
<marquee behavior=scroll direction="left">Your message here</marquee>
13. How To Put Music On Your Page=
<a href="your file name">Click To Play</a>
14. Making Glowing Text=
<span style="position:relative; width:150; height:25; filter:glow(color=#00ff00,strength=2)"> <A href="http://www.yourdomain.com"> What you want to glow.</A></SPAN>
That's All For Now, Check Back Later! ~ Jessy
















