html एक standerd markup language है , जिसे use करके web page create जाता है |
html का full form hyper text markup language है |
html में set of tags का use करके किसी web page को cerate किया जाता है , और यही tag html element कहे जाते है |
html से किसी भी web page के basic structure को describe किया जाता है |
Baisc structure of HTML web page:-
<html>
<head>
<title>page title</title>
</head>
<body>
<h1> my first heading</h1>
<p> my first paragraph</p>
</body>
</html>