Copyright © 2009 | This site is owned and operated by ballmarketing.net | All Rights Reserved | Contact Us
Email Marketing Course:
Free Publication:
the free "Internet Business Beginners' Guide"
-----------------
-----------------
New Guidebook:
----------------
Business Course:
Basic Page Structure
A basic concept of HTML is actually the 'nesting' tags. Your entire document is nested in the <html> </html> tags and the part of your document that the web browser displays is all inside the <body> </body> tag.
<html>
<head>

<title>Title goes here</title>
</head>

<body>

The body of your page goes here

</body>
</html>

Common Tags:
- Anchor Tag: <a href= "XXXX.html">XXXX</a>
- Center Tag: <center> </center> (you can also use <div align="center"> </div>)
- type-written: <tt>text</tt>
- Headings: <h1>Largest Heading</h1> through <h6>Smallest Heading</h6>
- Font Sizes: <font size="+1"> slightly larger font </font> (you can use other numbers, including negative)
- (Hidden) Comments: <!-- Your user cannot see this unless they read your source code --> To me this tag is very useful as you writing your HTML and you want to change something, take out a tag but you aren't sure.... So I enclose it and my HTML in the browser and it helps me remember what it was I had removed. And I can either put it back or delete it.
- Inline Images: <img src="http://url_here.com/directory/graphic.gif"> (remember, use width, height, and alt tags for best performance.)
- Important Alignments: add align="left" , align="right", align="center" i.e. <h1 align="right">big heading right aligned</h1>
- Line break: <br /> i.e. Line One.<br />Line Two.
- Mail Link: <a href="mailto:username@host.com">email me</a>or <a href= "mailto:username@host.com?subject=your subject here"></a> to include a subject.
- Preformatted Text: <pre> ... </pre>
- Regular link: <a href="http://url_here.com/">text for link</a>