HTML for dummies!

Written by Adam

20/05/2014

HTMLIf you’ve got a website that uses HTML (like WordPress) it can be useful to understand the basic programming commands so you don’t need to call in your web support people if you accidentally delete something and your layout goes wonky (a technical term!)

Step one is to understand how the commands – known as ‘tags’ – work.

HTML uses the little pointy brackets to indicate tags e.g.<strong> means that all the text after this tag should be in bold.

To stop the text being in bold you need to close the tag and this is done be repeating the tag, but with a slash in front of the instruction e.g, </strong>

If you have more than one instruction they should always be ‘nested’, in other words the first tag to open, should be the last to close.

Some instructions don’t have the closing tag – it’s just a one-off instruction. This is called a self closing tag, like <img src=”imageurl” /> and has a slash before the tag ends.

Even if you’re using a WYSIWYG content management system, where you can see what it will actually look like, it’s useful to know how to ‘fix’ the basics.  The most common problem is that someone deletes a return and, unwittingly, also deletes a close tag.  This is when the layout goes wonky!

Here are the most common tags that you might find useful.  Where there is a red ? you will need to insert information.

Text tags

<i></i> Italics
<strong></strong> Bold
<h1></h1> Main headline
<h2></h2> Main subheadline.  NOTE: You can use up to h6 and they are usually in smaller and smaller fonts.
<font size=”?”></ font size=”?”> Set from 1 to 7 to choose size.  NOTE: this is not the point size.
<font color-“?”></ font color-“?”> Set font colour by name or hex code (there are special codes used for colours online – known as ‘hex codes’.
<sub></sub> Subscriptx
<sup></sup> Superscriptx
<del></del> Strikethrough
<ol></ol> Ordered list e.g. numbered items NOTE: you will need <li> </li> around each list item.
<ul></ul> Unordered list e.g. bullet points  NOTE: you will need <li> </li> around each list item.

Image tags

<img src=”URL”/> This will embed an image from the URL you insert.
title=”?” Name an image as part of the img tag
alt=”?” An alternative name for an image.  NOTE: this is often referred to as an ‘alt tag’ in relation to search engine optimisation.

Table tags

<table></table> Create a table (like this one)
<th></th> Create a header row
<tr></tr> Create a row
<td></td> Create a cell
<table border=”?”> Sets the table border within the table instruction.
<table cellspacing=”?”> Sets the spacing around cells within the table instruction

Link tags

<href =”URL” > words you want to appear as link </href> Creates a hyperlink attached to a word or phrase.

You may also like …

Saudi Investment Fund pays $3.5bn to capture Pokémon Go

Saudi Investment Fund pays $3.5bn to capture Pokémon Go

Have you heard about the recent acquisition of Pokémon Go by the Saudi Investment Fund for a whopping $3.5 billion? This mobile game is a global phenomenon with a massive player base of 30 million users every month. This move is definitely stirring things up in the tech industry. Here are some key points to consider:

Uber offers 20 hours of free childcare in bid to lure female drivers

Uber offers 20 hours of free childcare in bid to lure female drivers

Interesting move by Uber to offer 20 hours of free childcare to attract more female drivers. However, some feel that the focus should be on increasing pay so drivers can have the flexibility to take time off with their families. Here’s a breakdown for you:

0 Comments

Submit a Comment