HTML Intro
This is a tutorial i have made long ago, and I have posted on other forums.
Firstly as of all of my Introductions, I would like to start off with a Q&A.
- What is HTML
HTML is the language/coding used to create Webpages on the Internet.
-Do I have to buy a lot of high priced programs?
No, the simplest program, you can use is Windows, Notepad.
- How do I make my site , "look good"?
Easy, just create a stylesheet, using CSS.
Now on to the Tutoral...
Starting off. . . .
HTML, can be very easy, and enjoyable. It is one of the most basic, coding, in the technology world. Your script should be started off with this code.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
How to put a title
The title, incase you don't know is clearly shown on the image below
[img]http://gw.urlq.org/html_tutoral.png[/img]
Enter the following code, under the first one.
<HEAD>
<TITLE>Your Site Name</TITLE>
</HEAD>
Insert Word and Images
To insert words, and images first enter this code
<body>
Then to write out words enter this code.
<p>Your text here</p>
And to skip lines enter this code
<br>
and to insert images enter this code
<p><img src="location of image" width="88" height="31"></p>
And to change font replace
<p>Your text here</p>
With
<p><font face="Font Name">Your Text Here</font></p>
Summing it all up
To sum it all up enter this code
</body>
</html>
Extras
Inserting stylesheets: enter this code
<link rel="stylesheet" href="CSS Location" type="text/css">
Put the code under your title
And your done!