Achieve the World’s Most Prestigious Certifications and Unlock Top-Paying Careers! Get Certified in the Industry’s Leading Programs Today.
🚀 DevOps Certified Professional 🚀 SRE Certified Professional 🚀 DevSecOps Certified Professional 🚀 MLOps Certified Professional
📅 Starting: 1st of Every Month 🤝 +91 8409492687 | 🤝 +1 (469) 756-6329 🔍 Contact@DevOpsSchool.com

Top 30 HTML elements, their use and EXAMPLE CODE

Posted by

What is an element?

The combination of a start and end tags define an element. Everything between the two tags is referred to as the contents of the elements.

1. HTML TAG

HTML is the standard for markup language. Its provides a way of displaying Web pages with text and images or multimedia content. It is the container for all elements except for the <!DOCTYPE> tag.

<!DOCTYPE html>
<html>
<head>
<title>HTML TAG</title>
</head>
<body>
<h1>This is h1 heading.</h1>
<h3>This is h3 heading.</h3>
<p>This is a paragraph.</p>
</body>
</html>

output:

2. HEAD TAG

Before the <body> element you will see a element. The <head> element is a container for metadata (data about data) This contains information about the page, rather than information that is shown within the main part of the browser(Metadata is not displayed). We will usually find also <title>, <style>, <base>, <link>, <meta>, <script>, <noscript> element inside the <head> element. </p>

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="John Doe">
<style>
h1 {color:red;}
p {color:blue;}
</style>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>This is h1 heading.</h1>
<p>This is a paragraph.</p>
<p>All meta information goes in the head section...</p>
</body>
</html>

output:

3. BODY TAG

Everything inside the body element contains all the contents of an HTML document is shown inside the main browser window such as headings, paragraphs, images, hyperlinks, tables, lists, etc. <body> is opening body tag and </body> is closing tag.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>This is h1 heading.</h1>
<p>This is a paragraph.</p>
<a href="url">hyperlink </a>
</body>
</html>

output:

4. TITLE TAG

The contents of the <title> element are either it is shown in the browser’s title bar or in the page’s tab, above where you usually type in the URL of the page you want to visit, or on the tab for that page (if your browser uses tabs to allow you to view multiple pages at the same time).</p>

<!DOCTYPE html>
<html>
<head>
<title>This is the Title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>

output:

5. HEADING TAG

An HTML heading tag is used to define the headings of a page.
There are six heading tags:

This is h1 heading

This is h2 heading

This is h3 heading

This is h4 heading

This is h5 heading
This is h6 heading
<!DOCTYPE html>
<html>
<head>
<title>This is the Title</title>
</head>
<body>
<h1>This is h1 heading</h1>
<h2>This is h2 heading</h2>
<h3>This is h3 heading</h3>
<h4>This is h4 heading</h4>
<h5>This is h5 heading</h5>
<h6>This is h6 heading</h6>
</body>
</html>

output:

6. PARAGRAPH TAG

The <p> tag is used to create new paragraph on web page. It has a closing tag </p> which is optional because a paragraph automatically ends when we start another paragraph.

NOTE:1.Number of line in a paragraph depends on the size of web browser window.

  1. If we resize the browser window, the number of lines in this paragraph will change.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>

output:

7. HORIZONTAL LINE

The <hr> tag is used to create a horizontal line on the web page. This tag is an empty tag. The web browser starts a horizontal rule form a new line. and any text that follow this tag is also displayed in a new line.

<html>
<head>
</head>
<body>
<h1>This is h1 heading</h1>
<p>This is a paragraph0.</p>
<hr>
<p>This is a paragraph..</p>
<hr>
<p>This is a paragraph2.</p>
</body>
</html>

output:

8. BOLD TAG

The HTML <b> element defines bold text. The text is written within <b> tag display in bold size. You can do that by using font-weight: bold; property in CSS.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>This text is normal.</p>
<p><b>This text is bold.</b></p>
</body>
</html>

output:

9. ANCHOR TAG

The <a> tag (anchor tag) is used to create a hyperlink on the webpage. This hyperlink is used to provided link the webpage to other web pages or some section of the same web page. It’s either used to provide an absolute reference or a relative reference as its “href” value.

<!DOCTYPE html>
<html>
<body>
<h1>This is new HTML Links</h1>
<p><a href="www.Google.com">Google</a></p>
</body>
</html>

output:

10. ABBREVIATION TAG

HTML <abbr> tag is used to represent an abbreviation of a longer word or phrase, such as WHO, HTML, HTTP, etc. Hovering the element will display with the description

<!DOCTYPE html>
<html>
<body>
<h1>The abbr element</h1>
<p>The <abbr title="World Health Organization">WHO</abbr></p>
</body>
</html>

output:

11. BUTTON TAG

The <button> tag is used for create clickable button, You can insert text or image in the <button></button> . You have to always specify the type attribute for a <button> element, to Know browsers what type of button it is.

<!DOCTYPE html>
<html>
<body>
<h1>This is button Element</h1>
<button type="button" onclick="alert('Hello world!')">Click Me!</button>
</body>
</html>

output:

12. EMPHASIS TAG

The EMPHASIS TAG is used to emphasized text or text that has stress emphasis. The content inside is typically displayed in italic style by the browser.

<!DOCTYPE html>
<html>
<body>
<h1>This em element</h1>
<p>This <em>paragraph</em> word is emphasized.</p>
</body>
</html>

output:

13. ITALIC TAG

The ITALIC tag is used to display the content in italic style. The <i> tag is a container tag that contains the opening tag, content & closing tag.

<!DOCTYPE html>
<html>
<body>
<p>This text is <i>italic</i></p>
</body>
</html>

output:

14. LIST ITEM TAG

The <li> element is used to represent an items in a list. It must be contain in a ordered list <ol>, unorder list <ul> or a menu <menu>. In menus and unordered lists, list items are usually displayed using bullet points and in ordered lists, they are usually displayed using numbers or letters.

<!DOCTYPE html>
<html>
<body>
<p>There we using ol(order list) element.</p>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<p>There we using ul(unorder list) element</p>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>

output:

15. ARTICLE TAG

The article tag content makes sense on its own. It is independent and complete from other content shown on the page. This tag is generally used on Forum post, Blog post, News story, comment etc.

<!DOCTYPE>
<html>
<body>
<article>
<h2>Narendra Modi</h2>
<i>(One of the powerful leader of INDIA) </i>
<p>Narendra DamodarDas Modi is the 15th and current Prime Minister of India,
Modi, a leader of the Bharatiya Janata Party (BJP), previously served as the Chief Minister
of Gujarat state from 2001 to 2014. He is currently the Member of Parliament (MP) from Varanasi. </p>
</article>
</body>
</html>

output:

16. ASIDE TAG

The <aside> tag is used to describe the main content of the web page in a shorter way like a summary. It is basically identifies the content that is related to the primary content but does not add up to the main intent of the primary page. The <aside> tag contains mainly author information, links, related content, and so on.

<html>
<body>
<h1>This is heading Tag</h1>
<p>This is normal paragraph text</p>
<aside>
<h1>This is heading text in aside Tag</h1>
<p>This is paragraph text in aside Tag</p>
</aside>
</body>
</html>

output:

17. LINK TAG

The <link> element Defines the relationship between a document and an external resource most used to link to stylesheets.

output:

18. q TAG

The <q> HTML element indicates that the enclosed text is a short inline quotation. It is useful when you need to put a quote onto a web page This tag is usually denoted by a visible quotation marks.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>This quote by Mahatma Gandhi </h1>
<p>Mahatma Gandhi: <q>You must be the change you wish to see in the world.</q>
We hope they succeed.</p>
</body>
</html>
view raw 18. q TAG hosted with ❤ by GitHub

output:

19. Description list (dl) tag

The <dl> element represents a description list. It is a list of groups of terms which is specified the using <dt> element and description provided by <dd> elements. It is use for this element are to display metadata (a list of key-value pairs).

<!DOCTYPE html>
<html>
<body>
<h1>The dl, dd, and dt elements</h1>
<p>These three elements are used to create a description list:</p>
<dl>
<dt>Delhi</dt>
<dd>Taj Mahal</dd>
<dt>Jaipur</dt>
<dd>Hawa Mahal</dd>
</dl>
</body>
</html>

output:

20. HEADER CELL (th) TAG

The <th> element defines a cell as header cell of a group of table. A simple HTML table with three rows, two header cells and four data cells. The text in <th> elements are bold and centered by default.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>This is th element</h1>
<p>The th element defines a header cell in a table:</p>
<table>
<tr>
<th>Month</th>
<th>Work</th>
</tr>
<tr>
<td>January</td>
<td>90%</td>
</tr>
<tr>
<td>February</td>
<td>80%</td>
</tr>
</table>
</body>
</html>

output:

21. TABLE ROW (tr) TAG

The <tr>tag is used for specifying the table row within a table. The cells inside it are define the using <th> is a header cell or <td> is a standard cell elements. Both the <td> and <th>tags support to fit into the columns.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>The tr element</h1>
<p>The tr element defines a row in a table:</p>
<table>
<tr>
<td>Cell A</td>
<td>Cell B</td>
<td>Cell C</td>
</tr>
<tr>
<td>Cell D</td>
<td>Cell E</td>
<td>Cell F</td>
</tr>
</table>
</body>
</html>

22. UNDERLINE (u) TAG

The tag stands for underline tag renders the enclosed text with an underline.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>This is example of u tag</h1>
<p>This word is use for <u>underline</u> purpose.</p>
</body>
</html>

output:

23. LINE BREAK (br) TAG

The <br>tag element produces for line break in the text. It is generally used in poems or addresses where the division of line is necessary. It is an empty tag, which means it does not need of end tag. The <br>
tag to enter line breaks, not to add space between paragraphs.

<!DOCTYPE html>
<html>
<body>
<h1>Using poem to show br tag.</h1>
<p>Twinkle, twinkle, little star<br>
How I wonder what you are<br>
Up above the world so high<br>
Like a diamond in the sky
</p>
</body>
</html>

output:

24. SUBSCRIPT (sub) TAG

The <sub> tag defines subscript text in an HTML document. For example, in the chemical formula CO2, the 2 is showing as subscript which has a smaller font and it appears in the lower base of word. This tag is also commonly referred to as the element.

<html>
<head>
<title> Hello </title>
</head>
<body>
<p>We release CO<sub>2</sub> when we breathe out.</p>
</body>
</html>

output:

25. SUPERSCRIPT (sup) TAG

The HTML tag defines superscript text in an HTML document. For example, when we have to fine the value such as 2 to the power of 4, the number 4 is rendered as superscript. This superscript text has a smaller font and appears with a raised baseline. This tag is also commonly referred to as the element.

<html>
<head>
<title> Hello </title>
</head>
<body>
<p>What is the answer pf 2<sup>4</sup>?</p>
</body>
</html>

output:

26. ADDRESS TAG

The <address>tag is used to specify the authorship or type of information of the article or webpage which is needed such as, URL, physical address, phone number, email, other links, etc. The contact information written between <address> tags mostly renders in the italic form on the browser.

<!DOCTYPE html>
<html>
<body>
<h1>The address element</h1>
<address>
Written by <a href="abc.123@example.com">Ram Kumar</a>.<br>
Visit us at:ABC pur<br>
Example.com<br>
ABC 321, delhi<br>
INDIA
</address>
</body>
</html>

output:

27. AUDIO TAG

HTML audio tag is used to define sounds such as mp3 music and other audio clips. Currently HTML 5 supported three file format in audio tag.
mp3, wav, ogg.
The Flash, Silverlight and similar technologies are used to play the multimedia items.
It may contain one or more audio sources, represented using the src attribute or the element.

<!DOCTYPE html>
<html>
<head>
<title>HTML audio Tag</title>
</head>
<body>
<p>Click on Play button...</p>
<p>(Song: ABC)</p>
<audio controls>
<source src = "Kalimba.mp3" type = "audio/mpeg">
</audio>
</body>
</html>

output:

28. IMAGE (img) TAG

The <img> tag is used to embed an image in an HTML page. The src attribute is required to specify the path to the image you want to embed. The alt attribute sets a text description of the image, which is not necessary but it is useful for readers to read this description.

<!DOCTYPE html>
<html>
<head>
<title>Image tag</title>
</head>
<body>
<h2>HTML image example with height and width</h2>
<img src="https://cdn.britannica.com/29/150929-050-547070A1/lion-Kenya-Masai-Mara-National-Reserve.jpg"
height="180" width="300" alt="animal image">
</body>
</html>

output:

29. META TAG

The <meta> tag defines metadata about an HTML document. Metadata is information about data.
The tags always go inside the <head> element, and are typically used to specify character set, page description, keywords, author of the document, and viewport settings.
Metadata will not be displayed on the page. Metadata is used by browsers (how to display content or reload page), search engines (keywords), and other web services.

<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name = "keywords" content = "HTML, Meta Tags, Metadata" />
<meta name = "description" content = "Learning about Meta Tags." />
</head>
<body>
<p>Hello World</p>
</body>
</html>

output:

30. BLOCKQUOTE

The <blockquote> tag is used to define a block text which is quoted from another source. The Browser usually displays the content within <blockquote> tag as indented text. A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the element.

<!DOCTYPE html>
<html>
<body>
<h1>The blockquote element</h1>
<p>Here is a quote from a-z-animals.com</p>
<blockquote cite="https://a-z-animals.com/animals/bengal-tiger/">
<p>One of the most wondrous and iconic animals to walk the Earth, Bengal tigers are majestic and rare.
They’re also one of the biggest cat species in the world. On average, Bengals are larger than other tiger species,
but the largest tiger ever recorded was a Siberian. As such, Bengals are considered the second largest tiger species.
Today, wild Bengal tigers are animals that only live in Bangladesh, Bhutan, India, and Nepal.
And while there are more Bengals than any other tiger subspecies on the Indian subcontinent, the populations are endangered.
Conservation efforts are working to some degree, but they’re not outpacing the poaching,
deforestation, and human encroachment that has devastated wild tiger habitats over the past 50 years..
</p></blockquote>
</body>
</html>

output:

5 1 vote
Article Rating
Subscribe
Notify of
guest


3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Rajesh Kumar
Admin
2 years ago

One of the best post i have seen which has all the important 30 HTML elements with example. Good tutorial. thanks for sharing it.

Rakesh
Rakesh
2 years ago

Very good way of writing blog with explanation

Dharmendra Kumar
Dharmendra Kumar
2 years ago

Nice explain for Top 30 HTML elements, with Example code, Thanks for sharing.

3
0
Would love your thoughts, please comment.x
()
x