Basic definitions of html tags
it's a small basic definitions which can help you understand the basics .
<!DOCTYPE> Defines the document type
<html> Defines an HTML document
<head> Contains metadata/information for the document
<title> Defines a title for the document
<body> Defines the document's body
<h1> to <h6> Defines HTML headings
<p> Defines a paragraph
<br> Inserts a single line break
<hr> Defines a thematic change in the content
<!--Commented Texts can write here --> Defines a comment
Basic structure of an html
<!DOCTYPE>
<html>
<head>
<title> Learn HTML tags </title>
</head>
<body>
<h1>Basic Structure of Html Tag </h1>
<p>Hi, this is html tutorial for beginner. I hope it help you to understand the structure of html and give you a speed to move forward in your carrier, </br>
Thank for reading
</p>
</body>
</html>
No comments:
Post a Comment