Hi guys,
today i will start a new tutorial about a very easy and simple programming language named HTML.Any body can make a static website by using this language. So,lets start .

Tutorial-1

At first we have to learn the difference between static and dynamic website.
Static website is a simple website,here not so many attributes are added,this has limitation to include more application .On the other hand dynamic website has a lot of application ,a lot of attributes ,as like face book.

So,Html is used to make static websites where so many attributes cannot be added. But within the limited attributes you can make a good,eye catching website.

The abbreviation of HTML is H=hyper T=text,M=markup,L=language, So HTML is Hypertext Markup Language.
Like other progamming language as such C,java,php it is a combination of some tags.Every tag starts with <> ends with </>
now we will write main tag by some steps

step-1

<html>
</html>

step-2

<head>
</head>

step-3

<title>
</title>

step-4

<body>
</body>

step-5

<head>
<title>
</title>
</head>

now,5+4=
step-6

<head>
<title>
</title>
</head>
<body>
</body>

now insert step-6 into step-1
so,main tag is

<html>

<head>

<title>    

</tite>

</head>

<body>

</body>

</html>

See u next class
Shuvo

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.