BakalulaX
Welcome to BakalulaX. PLease register or login. Smile

Join the forum, it's quick and easy

BakalulaX
Welcome to BakalulaX. PLease register or login. Smile
BakalulaX
Would you like to react to this message? Create an account in a few clicks or log in to continue.
JEBI SE LUDI!!!!! TI SI RETARD!

You are not connected. Please login or register

HTML Basics !

Go down  Message [Page 1 of 1]

1HTML Basics ! Empty HTML Basics ! Sun Sep 12, 2010 2:55 pm

Sports Kingg

Sports Kingg
WebMaster
WebMaster

Hi everyone. I am sure you all want to learn something about HTML. Well its most simple web language to learn.
First of all every webpage have this begining:
Code:
<html>
Its begining code. After that you should type:
Code:
<head>
Head tag descripe yours web page.For example you can use title tag in head(you must use title in head tag otherwise you will not have title of website).
Code:
<html>
<head>
<title>HERE YOU PUT TITLE OF YOURS WEBSITE</title>
</head>
As you see I put this
</title>
and that mean i finished tag. If you open tag normal like this <title> you must close it like this </title>
If you dont know how tag looks like look this picture:
Code:
http://img69.imageshack.us/img69/2416/20100912224715.jpg
Now after we have our head compleated we should continue on body. There is whole description of website. You can put text, align text on center , everything, also make text different colors...

Example:

<html>
<head>
<title>YOUR WEBSITE TITLE</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>


Ok what i done know? Well i just put some text on ours web site.

I think this is enough for first tutorial. Important thing you need to know. All this codes you type in notepad(huh, you didnt expect that) really, in notepad, and save it as index.html and click on unicode not ANSI system. Then open page and you can see how it looks. But its just a page, its not uploaded to your own hosting...

https://bakalulax.1forum.biz

2HTML Basics ! Empty Re: HTML Basics ! Mon Sep 13, 2010 6:21 am

Sports Kingg

Sports Kingg
WebMaster
WebMaster

Hi again. I forgot to say something about HTML. HTML is a language for describing web pages.
* HTML stands for Hyper Text Markup Language
* HTML is not a programming language, it is a markup language
* A markup language is a set of markup tags
* HTML uses markup tags to describe web pages

Ok we can start now. We can have headings on our website and we should type this:

Code:
<html>
<body>
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
</body>
</html>
So now we have 3 headings. We can put paragraphs like this:
Code:
<html>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
Now you saw how to make paragraphs and headings. Lets go more(because its sooo simple).
If you want some link on your webpage you must use this code:
Code:
<a href="http://www.google.rs/">This is a link</a>
What i just done? Well a href is a code to make link, "THIS IS A LINK" and after qwotes goes text showed on webpage. This tag you put betwen <body></body> tags.
And one more lesson for this post:
If you want to put image on your webpage just use this code:
Code:
<img src="http://bakalulax.1forum.biz/forum.htm" width="104" height="142" />
Now we inserst picture and defined it with some width and height...

https://bakalulax.1forum.biz

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum