Definition:
- HTML- Hyper Text Mark Up Language
- HTML used to develop web pages.
- Tags are used to create a HTML document.
- not a case sensitive language.
How to create and save html program:
- Open any Text editor like like Notepad.
- Opening Notepad- click start button->click All Programs-> click Accessories->click Notepad.(or) select search and type Notepad.
- write (or) copy Html program.
- save in Notepad - click File menu-> click Save-> type filename.html
- '.html' is file extension it helps you save Html format.
How to open Html program:
- go your browser
- choose file in menubar ->click open -> click browse -> select the file from you saved place.
- here you have to remember where you have to save your file.
Tags:
- Is used to show something in the screen.
- It start with '<', and end with '>' symbol.
For Example:
<html>
1. single tag
2. pair tag
1. single tag:
Break line tag. <Br> it works like a enter key.
2. pair tag:
<I> content </I> It produce Italic effect of the content
here,
<I> -Starting tag
</I>- ending tag
Example:
<html>
<head>
<title> first program </title>
<head>
<body>
<p>This is my first HTML program</p>
</body>
</html>
output:
This is my first HTML program
Example Explain:
- Every HTML programs starts with <html> and end with </html> tag.
- Content between <html>and </html> says - is a HTML program.
- Content between <head> and </head> says- information about the program.
- Content between <title> and </title> denotes the title in title bar.
- Content between <body> and </body> denotes the content of the page.
- Content between <p> and </p> denotes paragraph.
tags:
what is html, simple html program, about html tags, html program with explain, html tags, html, how to save html program, how to use html, how to html works, html explanation, html for beginners, how html tags works