HTML Tags
In HTML we have many tags to use. The tags are used to define.
Some of the tags have ending tag and some doesn't have ending tag.
The open tag is <tagname attributes> and end tag is </tagname>.
The content between the open and end tag are belongs to that tag which we assigned.
The tags only contains open tags are written inside any tag.
·
<title> . . .
</title>
·
<head> . . . </head>
·
<body> . . . </body>
·
<p> . . . </p>
·
<h1> . . . </h1>
·
<input type=
"checkbox">
. <i class="">
Example :-<!Doctype html>
<html>
<head>
<title> Program </title>
</head>
<body>
<h1> Name</h1>
<input type="text" width="200px">
<br>
<p>Now press submit button</p>
<button type ="submit">Submit
</body>
Tags:
HTML