Html lesson 1.
For learning html just open up notepad, get any latest browser and fire away with these tutorials.....
the most basic things are tags... the <xyz> are called tags... without doing too much theoretically i will demonstrate it practically....
Open the notepad and type the following...
<html> (it is opening tag)
<head>
<title> My first Html document</title> (any title you want)
</head> (</xyz>ends the tag)
<body> (all the visible things go here....)
<p> <b> This is my first html text</b></p>
</body>
</html>
save the document at your preferred location as anyfilename.html and then open it with your browser and BOOM!... you will find written " This is my first html text "..
Congrats you have successfully made your first HTML page... stay tuned for more lessons :)
For learning html just open up notepad, get any latest browser and fire away with these tutorials.....
the most basic things are tags... the <xyz> are called tags... without doing too much theoretically i will demonstrate it practically....
Open the notepad and type the following...
<html> (it is opening tag)
<head>
<title> My first Html document</title> (any title you want)
</head> (</xyz>ends the tag)
<body> (all the visible things go here....)
<p> <b> This is my first html text</b></p>
</body>
</html>
save the document at your preferred location as anyfilename.html and then open it with your browser and BOOM!... you will find written " This is my first html text "..
Congrats you have successfully made your first HTML page... stay tuned for more lessons :)