How to use html tag in HTML files

What is html ? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the “hidden” code that helps us communicate with others on the World Wide Web (WWW). HTML is short for HyperText Markup Language. HTML is used to create page that are displayed on the World Wide Web. It’s filename most often ends in the .html extension.

Definition of an HTML Document :- An HTML document is a file containing hypertext markup language. HTML code is based on tags, or hidden keywords, which provide instructions for formatting the document. A tag starts with an angle bracket and the ‘less than’ sign: ‘<>’. The tag ends with an angle bracket and the ‘greater than’ sign ‘</>’.

html coding structure


<html>
<head>
<title>Name</title>
</head>
<body>
<h1> Your Heading Text Here</h1>
<p> Your Content here </p>
<p>Your Content here </p>
<ul>
<li>Your Content here </li>
<li>Your Content here </li>
<li>Your Content here </li>
</ul>
</body>
</html>

Use of html Tags in HTML files:-

HTML tags are the hidden keywords within a HTML page that define how your web browser must format and display the page. Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag.

Leave a Reply

Your email address will not be published. Required fields are marked *