INTRODUCTION OF HTML
- HTML is a markup language.
- HTML stands for hypertext markup language.
- HTML is predominant markup language.
- HTML is the set of markup tags. HTML Tags are used to describe web pages.
- Web Browser read the html documents and display them as web pages.
- HTML can be used to embedded images and objects to create interactive form.
- HTML is a markup language it is not a programming language. so it is a set of markup tags.
- Tags are generally comes in pairs for every opening tag there should be a closing tag.
- opening tags are <html> and <body> and their corresponding
closing tags are </body> and </html> respectively.
Sample Program
<html>
<body>
<b> html sample program</b>
</body>
</html>