Web Design With HTML [ HTML Elements ]

Posted by Unknown on 13:44 with No comments

Web Design With HTML [ HTML Elements ]


An HTML document is everything from the opening tag to the closing tag it's also defined by HTML elements.
web design with html
HTML Elements:
Opening tagElementsClosing 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 />

 

Basic structure analysis with HTML Elements:

<html>
<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 
Categories: