03/25/2009
Filed In: Web Design
HTML (Hypertext Markup Language) is the language that is used to create web pages. How is this useful for the everyday person who doesn’t want to be a web designer? Well, if you’re interested in using MySpace, LiveJournal, creating a Blog (on Blogspot, TypePad, etc.) then having a little bit of basic HTML knowledge will allow you to do a lot more and personalize your space the way you really want to.
I am personally a freelance web designer and developer so I am fully aware of the advantages that come with knowing HTML. However, this short tutorial will be for those who do not have a desire to be a full-on web designer, but would like to know enough to be a little dangerous.
I am personally a freelance web designer and developer so I am fully aware of the advantages that come with knowing HTML. However, this short tutorial will be for those who do not have a desire to be a full-on web designer, but would like to know enough to be a little dangerous.
Links:
- Example: DIY Rocks
- Code:
<a href="http://www.queenofdiy.com">DIY Rocks</a>
Images:
- Example:

- Code:
<img src="http://imgurl.jpg"/>
Linking Images:
Line Break:
- Example:
line one
line two - Code:
<br/>
Paragraph:
- Example:
Paragraph 1
Paragraph 2
- Code:
<p>Paragraph 1</p> <p>Paragraph 2</p>
HTML Document:
- Code:
<html> <head> <title>Title Goes Here</title> </head> <body> Body Text Goes Here </body> </html>
Italic Text:
- Example: text goes here
- Code:
<i>text goes here</i>
Bold Text:
- Example #1 (Preferred Method): text goes here
- Code:
<strong>text goes here</strong>
- Example #2: text goes here
- Code:
<b>text goes here</b>
Underline Text:
- Example: text goes here
- Code:
<u>text goes here</u>
Strike Through Text:
- Example:
text goes here - Code:
<strike>text goes here</strike>
Bullet List:
- Example:
- List Item #1
- List Item #2
- List Item #3
- Code:
<ul> <li>List Item #1</li> <li>List Item #2</li> <li>List Item #3</li> </ul>
Numbered List:
- Example:
- List Item #1
- List Item #2
- List Item #3
- Code:
<ol> <li>List Item #1</li> <li>List Item #2</li> <li>List Item #3</li> </ol>
Did You Like This Post?

















































March 27, 2009
March 27, 2009
June 25, 2009