There are lots of easy HTML tags that you can add to your text to change its appearance. This page lists some of the most common tags. If you want to learn more, please see: How can I learn more about HTML?
| Code | Examples |
| Text | |
|---|---|
<strong>TEXT</strong> | This text is bold. |
<em>TEXT</em> | This text is italicized. |
Surround text with <strong></strong> tags to make it bold, or with <em></em> to italicize it. | |
<blockquote>TEXT</blockquote> | Regular text goes here.This text is in a blockquote. |
Surround text with <blockquote></blockquote> tags to indent it and set it apart from the rest of your text. Useful for quoting longer sections of other pages. | |
<h1>TEXT</h1> | Header 1Header 3Header 6 |
| Header tags are used for various levels of headers, titles and subtitles on a page. The size choices are 1 (largest) through 6 (smallest). | |
| Links | |
<a href='http://URL'>TEXT</a> | This is a link to Blogger. |
The text between the <a> tags will be what your reader sees and clicks on. The URL indicated by href= is the address they will be taken to. For more information on links, please see How can I do more with links? | |
<a href='mailto:ADDRESS'>TEXT</a> | This is an email link. |
Email links work like webpage links. Just replace http:// with mailto: and replace the URL with an email address. | |
| Lists | |
<ol> |
|
<ul> |
|
You can create ordered (numbered) lists with the <ol> tags and unordered (bulleted) lists with the <ul> tags. In either one, individual list items are contained in <li></li> tags and get numbered or bulleted automatically. You can also nest lists, by including the complete code for a second list within the <li></li> tags for the first list. | |
| Dividers | |
<p>TEXT</p> | First paragraph. Second paragraph |
| Paragraphs are blocks of text separated by blank lines. | |
TEXT <br /> TEXT | First line. Second line. |
| Break tags start a new line where ever you enter them. Note that it is just a single tag, so it doesn't have to surround any text. | |
TEXT <hr /> TEXT | First line. Second line. |
| Horizontal lines can be used to separate anything you want. Like break tags, this are single items that don't surround text. | |
| Colors, Fonts, Alignment and anything else you can think of... | |
| You can adjust the precise appearance and positioning of all the elements listed above and more, through the magic of CSS. See: What else can I do with CSS? | |