HTML
HTML means Hypertext markup language.
HTML is one of the popular language.
HTML is used to make layout of webpage.
HTML can be coded in Notepad or VS code.
HTML file is saved as ‘.html’.
Syntax:-
<html>
<head>
<title> </title>
</head>
<body> </body>
</html>
There are various tags such as
1. <p> for paragraph
2. <h1> for heading
3. <hr> for horizontal line
4. <br> to take break
and so on...
HTML is one of first language of webpage
development.
To add more elements to page we use CSS and
Javascript.