HTML Basic Tags
HTML tags are used to design a normal or responsive user interface that shows on the computer web page with the help of CSS, jQuery, and JavaScript. In HTML, there are many tags used which are mentioned below one by one:
Web Page Section
- Head Section
- Body Section
1. Tags in the Head Section
- <html>
- <head></head>
- <title></title>
- <meta />
- <link />
- <script></script>
In the head section, all tags are used between the opening and closing tag of <head> tag, for example:
<head>
<title></title>
<meta />
<link />
</head>
2. Tags in the Body Section
- <body></body>
- <h></h>
- <p></p>
- <a></a>
- <div></div>
- <form></form>
- <table></table>, etc...
In the body section, all tags are used between the opening and closing tag of <body> tag, for example:
<body>
<h1>My Heading</h1>
<p>My paragraph</p>
<a href="#">Clickable Link</a>
<div></div>
</body>