Here I will teach your the basics of creating a website using html coding.

First off, you must know where to write your html coding. DO NOT write it in word programs such as Microsoft Word, Corel Word Perfect, etc. Use a program like notepad which is probably the best.

In order to start your page you need to start off with the following:

<html>
<head>
<title>site name</title>
</head>

Now you need to enter your body or contents of your website. Put the following:

<body>

(Put your contents between the two)

</body>

You can put images or writing for your contents.

To insert an image:
<img src=”image name” width=”image width” height=”image height”>

example: <img src=”darkmispic.jpg” width=”100″ height=”120″>

To insert writing:
<font size=”the size you want your text to be” face=”What style of text you want”>your text here</font>

example: <font size=”3″ face=”verdana”>Hello and welcome to Darkmis29.</font>

You can also add text links or use images as a link. Do the following:

To insert text link:
<a href=”yourlink.html”>what you want your text link to say</a>

To insert image link:
<a href=”yourlink.html”><img src=”image name”></a>

To center images or text do the following:

You need to put <center> in front of your text or image and the close it by placing </center> at the end.

Hope this tutorial has helped you!

Tutorial Written By:

 

Comments are closed.