Html Basic Tags with Example
Posted On September 27th, 2022
Array
In this section, we’ll look at a list of HTML tags with examples. The article includes a table that lists all of the HTML tags. Clicking on any of the tags, for example, will take you to its detailed description.
1. Basic HTML Tags List Used in Coding
Tag | Description |
---|---|
<!DOCTYPE> | start document type |
<html> | This is root of HTML document |
<head> | It defines the HTML document’s head, which contains non-visible data such as metadata and other information. |
<body> | the body of a webpage that contains everything visible on the page |
<h1> to <h6> | This is a collection of heading tags that are used to create headings on a webpage. |
<p> | It defines a paragraph on a website. |
<!–…–> | It’s used to add comments to HTML documents. |
<br> | It indicates a line break. |
<hr> | To add a horizontal line in a webpage |
2. HTML Doctype
Doctype is a declaration of the document type to the browser. It is visible at the top of the HTML document.
It informs the browser about the HTML standard or markup language type. Although it is not required, it is a W3C recommendation. !DOCTYPE html> as an example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML - doctype tag</title>
</head>
<body>
<p>Doctype is used to declare type of markup language used.</p>
</body>
</html>
Related Posts

5 Roadblocks To Digital Marketing Transformation
Posted on February 18th, 2025
In the time of digitalization, marketing is very useful for company’s growth and success. Digital transformation ensures the making of more sustainable solutions by using the right skills. The...
Read More →
5 Most Popular Machine Learning Software Tools
Posted on February 18th, 2025
There are many popular machine learning software tools that users might be aware of. So read this blog to learn the top machine learning Software tools. By using these...
Read More →
The List most common types of Schema Markup
Posted on February 4th, 2025
Schema markup is a kind of planned data. Types of Schema Markup are useful for search engines to know the content on your web pages. This way, search engines...
Read More →
The Top 10 SEO Tools used by SEO specialists
Posted on January 29th, 2025
Self-employed businesses that run online businesses or websites cannot underestimate the importance of Search Engine Optimization (SEO) and top 10 SEO tools used by the specialists. It is useful...
Read More →© All Copyright Reserved japjitravel.com
Leave a Comment :