HTML Basics
What is the easiest way to teach someone some basic HTML?
An increasing number of people are becoming interested in activities that requires some basic knowledge of HTML, like blogging, forum posting and email writing. If someone comes to you asking for help learning HTML, you can suggest the following steps:
- Download and Install an HTML editor (like HTML-kit, Nvu, Bluefish)
- Create a blank HTML document
- Try stuff. Press buttons.
- Insert the folowing examples into the body of the document (that is directly after you see the following tag:
<body>
Sample code
Link to Google<a href="http://www.google.com">Google.com</a>
Let people Email you
<a href="mailto:jowensbysandifer@gmail.com">Email me</a>
Insert an Image
<img src="location/of/file.bmp" alt="description of photo" width="200" style="border: none;"/>
New Line Break
<br />
Horizontal Line Break Like this:
<hr />
Bold Type
<b>Bold Type</b>
Italics
<i>Italics</i>
<h1>Heading1</h1>
<h2>Heading2</h2>
A New Paragraph
<p style="font: 12px; text-align: center">A New Paragraph</p>
- Item 1
- Item 2
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<div style="float:left;">
Text you want to style or place in a particular part of the page
</div>
Change the background color of the page
<Body Bgcolor="#FFFFFF">
Trackbacks
Use the following link to trackback from your own site:
/blog/articles/trackback/259
