0% found this document useful (0 votes)
9 views1 page

HTML Tags

The document is an HTML example demonstrating various HTML tags and their usage, including headings, paragraphs, text formatting, and hyperlinks with images. It showcases tags like <a>, <h1> to <h6>, <p>, and others for different purposes. Additionally, it includes comments and examples of special text formatting tags.

Uploaded by

Meran Nasir
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

HTML Tags

The document is an HTML example demonstrating various HTML tags and their usage, including headings, paragraphs, text formatting, and hyperlinks with images. It showcases tags like <a>, <h1> to <h6>, <p>, and others for different purposes. Additionally, it includes comments and examples of special text formatting tags.

Uploaded by

Meran Nasir
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<title>HTML Tags and Anchor Control</title>
24bcd10033... (this is in head tag)
</head>
<body>
<br>I USED BODY TAG TO WRITE HERE.

<!-- Creating a Hyperlink with an Image -->


<p>Using "a" with "<>" for creating a hyperlink:</p>
<a href="https://uims.cuchd.in/">
<img border="0" alt="CUIMS" src="logo_cuims.gif" width="100" height="100">
</a>

<!-- Demonstrating Headings -->


<h1>Heading 1 tag</h1>
<h2>Heading 2 tag</h2>
<h3>Heading 3 tag</h3>
<h4>Heading 4 tag</h4>
<h5>Heading 5 tag</h5>
<h6>Heading 6 tag</h6>

<!-- Demonstrating Paragraph and Text Formatting -->


<p>Paragraph tag</p>
<p><b>Bold tag</b></p>
<p><strong>Strong tag</strong></p>
<p><i>Italic tag</i></p>
<p><em>Emphasized tag</em></p>
<p><mark>Marked tag</mark></p>
<p><small>Small tag</small></p>
<p><del>Deleted tag</del></p>
<p><ins>Inserted tag</ins></p>
<p>Subscript<sub> tag</sub></p>
<p>Superscript<sup> tag</sup></p>

<!-- Demonstrating More Tags -->


<p><abbr title="Hypertext Markup Language">Abbreviation tag</abbr></p>
<p><acronym title="World Wide Web">Acronym tag</acronym></p>
<p><address>Address tag<br>123 Web Street, Coding City</address></p>
<p><bdo dir="rtl">Bidirectional Override tag</bdo></p>
<blockquote>Blockquote tag</blockquote>
<p><cite>Citation tag</cite></p>
<p><q>Quoted tag</q></p>
<p><code>Code tag</code></p>
<p><dfn>Definition tag</dfn></p>
<p><kbd>Keyboard tag</kbd></p>
<p><pre>Preformatted text tag</pre></p>
<p><samp>Sample output tag</samp></p>
<p><var>Variable tag</var></p>

<!-- Line Break -->


<br>Line <br> Break tag
<!--THIS IS A COMMENT-->
</body>
</html>

You might also like