The Basics of HTML for Blogging
Print This
If you’re blogging, there’s a little bit of HTML code you should know. Yes, there are plenty of WYSIWYG (What You See Is What You Get) tools out there that require no coding, from the visual editor in WordPress to offline blogging tool like Windows Live Writer (which I’ll write about in another post). But if something goes wrong — you just can’t get two pieces of text to line up right, say — it pays to be able to take a look at the code and see what’s going on.
HTML is short for HyperText Markup Language, and is derived from the codes typesetters used to use to know where to insert different typefaces, horizontal rules, larger text for headings, italics and boldface, and so on. The basic idea is simple — you put tags around the text you want to modify, like this: <tag>this is the text you want to modify</tag>.
Here are some of the most common tags to get you started:
| <strong>Bold</strong> | Bold | |
| <em>Italic</em> | Italic | |
| <h1>Page Header</h1> |
Page Header |
|
| <h2>Headline</h2> |
Headline |
|
| <h3>Section Header</h3> |
Section Header |
|
| <a href=“http://site.com”>Link to site.com </a> | Link to site.com | |
| <img src=“http://www.site.com/path/to/images/image.jpg”> | (Note:the <img> tag is unique in not needing a closing tag.) |
|
| <p> | Starts a new paragraph | |
| <br> | Inserts a line break | |
| <ol> <li>List item </li> <li>List item </li> </ol> |
Ordered (Numbered) List
|
|
| <ul> <li>List item </li> <li>List item </li> </ul> |
Unordered (Bulleted) List
|
There are a lot more tags, but these are enough for about 90% of all the web writing you’ll ever do.
Don't miss a single post. Grab the RSS feed!



July 5th, 2008 at 4:46 pm
[…] Basics of HTML for Blogs at the Writers Technology Companion July 5, 2008 | Filed Under Link […]
January 30th, 2010 at 8:00 am
[…] The Basics of HTML for Blogs at the Writers Technology Companion […]
December 10th, 2010 at 5:47 am
You can get the step by step explanation at http://www.w3schools.com/html/html_primary.asp
March 4th, 2012 at 8:33 am
Hi, nice post.
Interesting to see how other people explain the basics of html.
Keep up the good work.
Damian
May 6th, 2012 at 4:02 pm
[…] The Basics of HTML for Blogging via The Writer’s Technology Companion. Share Filed Under: Helpful Blogging Links Tagged With: css, easy HTML, editor, online reading, writer, writing tips 1 Comment […]
June 6th, 2012 at 8:59 am
[…] The Basics of HTML for Blogging — The Writer’s Technology Companion […]