So, have you always wanted a webpage but never new how to write HTML. Well HTML(Hyper Text Markup Langue) is a very simple langue. You create the webpage one your computer and then put it onto a server.
For now we are not going to worry about putting your page on-line, but on getting you to make a web page.
The first command that you need to know is this
<HTML>
This command starts off your webpage everytime
and </html> will end your web page
Now you will learn two more command the
<Head> and <title>commands
The the <Head> command is mainly for search engines. The search engines
use this information to classify your webpage.
<title> write title <title>of my webpage.
If you look to the top left hand corner of your screen you will see the title of my page HTML HELP
You also have to end your <title>and <head>by </title>and </head>
This command goes after your <head> command.
After your <body> command is where all of the stuff that goes onto your
web page goes and between </BODY>
<html>
<head>
<title>What ever your title maybe mine is HTML HELP</title>
</head>
<body>
</BODY>
</html>
The first way you can put text on your webpage is by the command <p>:!
Let say that you wanted to say what your name was,ok you would put
<p>My name is John Doe or Jane Doe</p>
This is what your overall source code would look like
<html>
<head>
<title>What ever your title maybe mine is HTML HELP</title>
</head>
<body>
<p>My name is John Doe or Jane Doe</p>
</BODY>
</html>
you can also use something called headers to write text
for example
<H1>My name is Jane doe</H1>
You can use <H1> To <H6>
<H1> looks like this:
<H6> lools like this:
<H1> is the largest and gets smaller until <H6>
Lets say that your friend had a webpage and you wanted to put a link from yours to hers. Lets say that your friends webpage address is http://www.friendswebpage.com
This is the source code for the link
<A Href="http://www.friendspage.com">LINK TO MY FRIENDS PAGE</A>
The Link to my friends page is going to be what the link says on your page
for example LINK TO MY FRIENS PAGE
This what your source code will look like now!
Lets say you have a picture called Mycat.gif
The source code for this would be
<img src="Mycat.gif">
Now this is what your Webpage source code should look like
If you would like to see what your web page would look like CLICK HERE