HTML- Hyper Text MarkUp Language
This written above is the full form of HTML and now I shall try to explain what actually HTML means.
Its a language rather we can say most common language which we use in Web Designing.
Why we call it Hyper Text MarkUp Language.
Hyper Text means which is not a normal text like we type in notepad or Microsoft Word and all.
Hyper Text is something on which the user or the client cannot write and is faster than the normal text.
Now here we are not to discuss theory but learn something practical.
So Now we will start how to work with HTML and get into web designing.
The first thing comes into mind that where HTML is written.
So I will tell that HTML is wrtitten in Notepad. There are also many editors which will see later. Here not discussing in beggining it will create confusion.
How to Open Notepad
Notepad can be opened in Windows XP by going to Run and type notepad and press enter and now it openes.
Now first how to create a webpage thats important .
Save the notepad file with the extension .html or .htm
For example save the file with name page1.html
better practice is too save by writing in double quotes.
File name:"page1.html"
and now click on save or press enter when the save dialog box is opened.
This is the method how we create a page , but what about the content.
See HTML is WYSINWYG- This means HTML is
What You See IS Not What You Get
means the coding u do results in different look
Now we finally begin with the coding part.
In HTML we have two parts in HTML
1) HEAD
Head is used to give Title Bar coding and styles and all
2) BODY
Body is the actually content of the Web page
Now we are going to make a simple page which will contain name on the title bar and on the body i.e. the white portion.
For that u need to write the code
<html>
<head>
<title>Hello and Welcome</title>
</head>
<body>
Hello and Welcome
</body>
</html>
Now u can see here thats a simple code and how u can implement it
click here and now also this that how u type the name of the page and save it
clickand the
result u get is
this