Posts Tagged ‘html’

How Do I Add a Favicon To My Website?

Friday, January 1st, 2010

Once you have created a favicon you need to upload the filename.ico to your web server.

Then to add a favicon to your website you simply need to insert the following line of HTML code into the head section of your web page.

<link href=”/images/favicon.ico” rel=”shortcut icon” />

After you have done this, refresh your browser and if all is correct the favicon will appear. Some browsers update much quicker than others.

What is HTML?

Monday, September 1st, 2008

HTML stands for Hyper-text Markup Language. HTML is the language used to create web pages for websites on the Internet. HTML uses tags. Here is an example of a simple HTML document:

<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>

There are many different versions of HTML and the current standard is XHTML. There are only a few similarities between the two. Newer versions are made to increase accessibility.

Abingdon Web Hosting.

Where do I place the files for my website?

Wednesday, August 6th, 2008

The files for your website need to be uploaded to the public_html folder so that they can be viewed on the web.