05-10-2010, 11:25 AM
HTML Tutorial
Written By Eagle
Greeting people.In this tutorial im going to teach you some of HTML language.Hope you enjoy.
HTML is shorten HyperText Markup Language,also known as standard language used to create and publish documents on the World Wide Web.
This is almost as BB code which we use on all forums. Except putting
Code:
[b][/b]
Code:
<b></b>
Always when you want to make some HTML document you need to start with
Code:
<html>
Code:
</html>
These are HTML Basic Documents codes
Code:
<html>
<head>
<title>Document name goes here</title>
</head>
<body>
Visible text goes here...
</body>
</html>
Headings on your Webpage
for headings code is
Code:
<h1></h1>
Code:
<h5></h5>
Text Elements
Code:
<p>This is a paragraph</p>
<br /> (line break)
<hr /> (horizontal rule)
<pre>This text is preformatted</pre>
HTML Colors
This part is really hard to get know because you can make 16 millions colors
and every color has his own code.These codes are containing name of the color
Code:
#FFFF00
And she's lightness
Code:
#780000
Code:
#404040
HTML Links
Code:
<a href="http://www.supportforums.net/">Visit SupportForums</a>
This is one link with his name.
Code:
<a>http://www.supportforums.net/</a>
Images
This is link for image.When you want to put an image you need to put his widht and height,you need also this border which images frame tickness
And the code will look like this:
Code:
<h2>Norwegian Mountain Trip</h2>
<img border="0" src="/images/pulpit.jpg" width="304" height="228" />
Code:
<html>
<body>
<h2>Norwegian Mountain Trip</h2>
<img border="4" src="/images/pulpit.jpg" width="304" height="228" />
<a>This is a description of it</a>
</body>
</html>
I showed you some basic of HTML if you want to learn much much from this you need to study hard to be professional in this job.There are more functions that i haven't showed you,but this is enough till you got some experience in this job.
This tutorial is made by ME(Eagle) and you DO NOT HAVE PERMISSIONS to copy/paste it everywhere without my knowledge,
Copyright Eagle's Tutorials/Tips/Products ©
Regards
Eagle