Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 23, 2021 05:13 pm GMT

The Complete Guide Of ALL HTML tags

Complete Guide Of ALL HTML tags

The Complete Guide Of HTML tags, in a single tutorial, you will learn All HTML Tags with examples. HTML tags like a keyword that describes how the web browser will display the content. With the help of HTML tags, A Browser can differentiate the HTML content and simple content. However, HTML tags having three important parts:
Opening tag <> closing </> tag and content. But many HTML tags are unclosed.

An HTML Document/Page must have some vital HTML tags in which a web browser can distinguish between simple and HTML content.

HTML <!--...--> Tag

<!--This is a comment. Comments are not displayed in the browser--><p>This is a paragraph.</p>

HTML <!DOCTYPE> Declaration

<!DOCTYPE html><p>The content of the document......</p>

HTML <a> Tag

<a href="https://www.softcodeon.com">Soft Codeon!</a>

HTML <abbr> and <acronym> Tag

<h1>The abbr element</h1><p>Using <abbr title="Learn HTML">HTML</abbr> is fun and easy!</p><h1>The acronym element</h1>Can I get this <acronym title="Learn HTML">HTML Guide</acronym>?<p><strong>Note:</strong> The acronym element is not supported in HTML5.</p>

HTML Tag

<h3>HTML <span style="color: #000000;">&lt;area&gt;</span> Tag</h3><p>The <strong>&lt;area&gt;</strong> tag describe an area inside an image-map. This element is always nested inside <strong>&lt;map&gt;</strong> element.</p>

HTML <article> Tag

<article><h2>Google Chrome</h2><p>Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!</p></article>

HTML <caption> Tag

<table>  <caption>Monthly savings</caption>  <tr>    <th>Month</th>    <th>Savings</th>  </tr>  <tr>    <td>January</td>    <td>$100</td>  </tr>

HTML DLTag

<p>These three elements are use to create a description list:</p><dl>  <dt>Coffee</dt>  <dd>Black hot drink</dd>  <dt>Milk</dt>  <dd>White cold drink</dd></dl>

I shared this post from Complete Guide Of ALL HTML tags you can read in detail from there.

If you have any question please discuss below help to improve. Thank you.


Original Link: https://dev.to/elinabey/the-complete-guide-of-all-html-tags-51o9

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To