WHAT IS HTML.
to create web page we use note pad for coding.
when we code in note pad then it must be save in html extention.
we save file with any name, after name there must be html extention.
for exemple (webpage.html).
html is a language for describing web pages.
1. html stands for Hyperlink text markup language.
2. html is not a programming language, it is a markup language.
3. A markup language is a set of mark up tags.
4. html uses markup tags to describe web pages.
HTML TAGS.
html markup tags are usually called html tags.
1. html are keywords surrounding by angle brackets like
2. html tags normally comes in pairs like and .
3. The first tag in a pair is the start tag, and the second tag is the end tag.
4. start and end tags are also called opening and closing tags.
HTML DOCUMENTS = WEB PAGES
1. html documents describe web pages.
2. html documents contain html tags and plain text.
3. html documents are also called web pages.
The purpose of a web browser ( like internet explorer or fire fox) is to read html documents and display them as web pages. The browser does not display the html tags, but uses the tags to interpret the ontent of the page.
Now we start html exemples.
my first heading.
my first paragraph
Exemple expain.
1. The text between and describe the web pages.
2. The text between and is the visible page content.
3. The text between
and
is desplayed as a heading.4. The text between
and
is desplayed as a paragraph.(continue)