The Hyper Text Markup Language (HTML) is a markup language used to
create hypertext documents that are platform independent.
So most of what we see in the Internet web pages are made of html document.
HTML Code was originally developed by Tim Berners-Lee while at CERN, and popularized by the Mosaic browser developed at NCSA
It is called markup language because users can mark up their documents by representing structural, presentational, and semantic information alongside content.
The HTML code standards are defined by the ietf working group.
The standard are defined in rfc documents.
How to create a html file?
Beginner guide to html!
For Windows Users:
a)Open notepad or wordpad
b)Save the file as test.html
c)When ever we want to edit the file, go to the directory where the file was saved. Select the file. Press Shift and simultaneously right click the mouse over the file. Now select 'Open With' and select notepad / wordpad to open then file.
For Linux User:
a)Use vi in a terminal and open a file as "vi test.html"
b)Save the file by using ":wq"
c)When ever we want to edit the file, Open the file using vi or quanta+
The list is an index of html tag.
We will be seeing each tag in depth in tutorials.
The first tag that you add on your file will be html.
This is the tag which defines that the document is html.
Insert the tag in to your file as.
<html>
</html>
Any new tag added will lie between this tags.
Any html file should have head and body tag inside the html tag.
<html> is called starting html tag.
</html> is called ending html tag.
Most tags in html will have both starting and ending tags.
0 comments:
Post a Comment