Category: HTML tutorials

How to add headlines with HTML

When builing your HTML page you probably want some headlines. HTML provide 6 headline tags consisting of H1, H2, H3, H4, H5 and H6. The lower the number the higher the value. You should only have one H1 tag per page, a couple of H2 tags and some H3 tags and lower. This depends on […]

Read more... 4 Comments

How to add a paragraph with HTML

Using paragraphs are quite simple. You just need the following HTML code… <p>Your content</p> A paragraph contains two tags. A starting p tag and an ending p tag. In between you will write your content. Paragraphs does not contain any attributes but you can add an ID or a class for styling purposes. Styling is […]

Read more... 11 Comments

How to create a link with HTML

To add a link with HTML you need to use the following code… <a href=”link destination” target=”image target” /> In the href attribute insert the link. The target defines if the link should open in the same window or a new browser window. Use _blank to open in a new window or _selv to stay […]

Read more... 13 Comments

How to add an image with HTML

To add an image with HTML you need to use the following code… <img src=”image source” alt=”image title” /> You just need to replace the src (source) and alt attribute. The source is the link to your image and the alt tag is the title of your image. It is possible to add more tags […]

Read more... 6 Comments

« Previous Page