HTML - HyperText Markup Language
HTML is not a programming language , it is a Hyper Text Markup language. It is normal text file but file extension must be htm or html only.HTML wirtten with pre-define "tags" surrounding by angle brackets.
For simple test , copy below text and save with a .html or .htm and open it.
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
on above example first tag stand for start of html documents and stand for end of html documents.
No comments:
Post a Comment