HTML Intro

Hello to all

I am Sidhartha, here to tell you something very cool. The reason why I called it cool is, it can help you to create a website of  your own. Yes, using HTML you can create a website. HTML stands for HyperText Markup Language. It's also called the language of the web. HTML has various elements, attributes, properties, that helps us to create a web page. The basic structure of  an HTML file will look :

<!DOCTYPE HTML>
<html>
<head>
<title>My page</title>
</head>
<body>
My first web page.
</body>
</html>

If you are confused after looking at the above codes, then I would say, please don't be. We will go through each and every line written above in details. The thing written between <> is called a tag. So <html>, <head> etc are all tags. The first thing you might have noticed is, every tag is written twice. Well, that's how they are meant to be written. They are called the start<html> and end</html> tags. So you have to end each tag with an "/". There are exception to this, which I'll tell you as we move ahead in this tutorial. Let me tell you something about HTML, that it's case sensitive. That means, <html> is different than <HTML>. However, there is no restriction for you to write the tags. By that I mean, if you are a fan of capital letters, you can write all the tags in caps, but the only thing you need to keep in mind is that you have to end the tags in caps as well. But am not, so I'll use small letters in this tutorial. There are various versions of HTML. The version we will be discussing in this tutorial is HTML 4.01. I think am getting late for something important, so gotta go. We will carry on from here in our next meet.

Thank you for reading. See you guys soon.....

Comments

Post a Comment