Overview of HTML
Overview of HTML
- HTML stands for Hypertext Markup Language and is widely used for structuring Web Pages.
- HTML is not a programing language, it is a Markup Language which means HTML simply "mark up" a text document with tags that tell a Web browser how to structure it to display.
A very Basic HTML Document is shown below:
<!DOCTYPE
html>
<html>
<head>
<title>Very basic template of HTML
Document</title>
</head>
<body>
<!-- Content of the Webpage written in between body tag -->
<p>Webpage CONTENT</p>
</body>
</html>
output:
Comments
Post a Comment