An HTML document is everything from the opening tag to the closing tag it's also defined by HTML elements.
<html>
<head>
Here <html> element is everything from the <html> to the </html>
Here <head> element is everything from the <head> to the </head
Here <title> element is everything from the <title> to the </title>
Here <body> element is everything from the <body> to the </body>
Opening tag | Elements | Closing Tag |
---|---|---|
<h1> | Web Design With HTML-5. | </h1> |
<p> | Here everything is HTML Element. | </p> |
<a href="index.htm"> | This is HTML Element tutorials link. | </a> |
<hr /> |
<head>
<title>HTML Elements</title>
</head>
<body>
<p>An HTML document is everything from the opening tag to the closing tag it's also defined by HTML elements.</p>
</body>
</html>Here <html> element is everything from the <html> to the </html>
Here <head> element is everything from the <head> to the </head
Here <title> element is everything from the <title> to the </title>
Here <body> element is everything from the <body> to the </body>
0 Comments :
Post a Comment