PDA

View Full Version : Basic HTML Tutoral



destructivemonkey
February 18th, 2005, 20:54
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

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

Bratkid
February 19th, 2005, 17:05
Nice tutorial, thanks for the share

destructivemonkey
February 19th, 2005, 23:26
Thanks for the compliment, it was actually pretty easy to make!