Headings:
<h1> to <h6>: Represent headings of different levels, with <h1> being the highest level and <h6> the lowest. A page heading<h1>
should only be one per page. The proceeding tags are ordered by descending importance. Browsers will apply font weight and size styling accordingly.
<h1>Main Heading</h1>
<h2>Subheading</h2>
<h3>Another Subheading</h3>
Paragraphs:
Represents a paragraph of text.
<p>This is a paragraph of text.</p>
Lists :
ul: Represents an unordered (bulleted) list.
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
ol: Represents an ordered (numbered) list.
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
dl: Represents a definition list.
<dl>
<dt>Term 1</dt>
<dd>Definition 1</dd>
<dt>Term 2</dt>
<dd>Definition 2</dd>
</dl>
Links:
Represents a hyperlink.
<a href="https://www.neeto.com">Visit neeto.com</a>
Inline Text Styling:
<em>: Indicates emphasized text, often displayed in italics.
<p>This is <em>emphasized text</em>.</p>
<strong>: Indicates strong importance or emphasis, typically displayed in bold.
<p><strong>Important:</strong> Handle with care.</p>
<abbr>: Defines an abbreviation or acronym and can provide the full expanded form.
<p><abbr title="World Wide Web">WWW</abbr> is the internet.</p>
<code>: Represents a fragment of code.
<p>To display an image, use the <code><img></code> tag.</p>
Blockquotes
<blockquote>: Represents a large, stand alone quote from another source.
<blockquote>
<p>This is a quoted text from a famous author.</p>
</blockquote>
<q>: Indicates a small quotation embedded within other content.
<p>He said, <q>Life is beautiful</q>.</p>