Basic HTML tags in your text

On this page is shown how to create a couple of commonly used html tags in your wordpress posts. If you can’t find the tag you are looking for on this page try googling it with search words like: "html tag for underlined text". Or aternatively you can look it up on one of the many html reference sites eg. like: HTML reference guide

An orange heading

<h2>An orange heading</h2>

Highlighted text
<strong>Highlighted text</strong>

Italic text
<em>Italic text</em>

A hyperlink: HTML reference guide
<a href="http://www.html-reference.com/">HTML reference guide</a>

An image in your text:
<img src="http://studiolab.ide.tudelft.nl/studiolab/labmark-tutorial/files/2011/05/DSCF1433-150x150.jpg" width="50" height="50" />

A list of items:

  1. Item 1
  2. Item 2
  3. Item 3

<ol><li>Item 1</li><li>Item 2</li><li>Item 3</li></ol>

Special characters in your text eg. René or ♥
Ren&#233; and &hearts;
(check this online reference for a complete listing of all special characters)

This entry was posted in Basics. Bookmark the permalink.