HTML 15 Newest Tutorials
HTML: Hyper Text Markup Language
This is developnew.com and you are in section in HTML,
Here you will learn the Hyper Text Markup Language (HTML). If you
are fresher or intermediate in this fields, we welcome you in this
site where you will learn HTML step by step with professional examples.
The Basic Tools you Need
o The primary—and most basic—tool that
you’ll need is a text editor. You’ll use this to write
your web pages.
o Once you’ve written a web page, you can
see how it looks in a web browser.
Your first program:
Step I: open notepad and write following in file
| <html> <head> <title>My first program</title> </head> </html> |
Step 2: Save the file with extension .htm or .html example--- first.htm,
rock.htm, me.html etc..
Step 3: Open the Web browser like Internet Explorer
Step 4: Open your file
Familiar with HTML
Types of Tag
Html is a formatting language. It is not a programming language
so it’s very simple to learn. There are two types of Tag in
HTML pair (Container) and not pair (Empty) Tag.
Example
<html>, <body>, <table> etc. are Container Tag.
These are container tag because they open as well as closing like
<html>…</html>, <table>….</table>
<input />,<br />,<hr />,<frame />etc. are Empty
Tag. These are Empty tag because these tag are only open not close
like if you want to break the line you can use <br /> tag.
In above programe title tag is not colsed so you can not see the
result in your web browser. In the title bar it display the path
of your html file
In the below is short description of internet browser window.

Rember something?
<html>....</html> : this is begins and ends each and
every web page.
<title>.....</title> : display the title in title bar
<body>..</body>: this is the body of your page.
Comment Tag: <!--------------->
| <html> <head> <title>My first program</title> </head> <body> Hi, All Welcome in DevelopNew.com <!---- this is comment --------> </body> </html> |