0% found this document useful (0 votes)
2 views2 pages

Program 1

The document is an HTML example showcasing basic HTML tags including headings, paragraphs, blockquotes, and formatting options like bold, italic, and underline. It also demonstrates the use of horizontal rules and special characters such as subscripts and superscripts. Overall, it serves as a simple guide to HTML structure and formatting.

Uploaded by

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

Program 1

The document is an HTML example showcasing basic HTML tags including headings, paragraphs, blockquotes, and formatting options like bold, italic, and underline. It also demonstrates the use of horizontal rules and special characters such as subscripts and superscripts. Overall, it serves as a simple guide to HTML structure and formatting.

Uploaded by

gangadharm55blue
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html>
<head>
<title>Basic HTML Tags</title>
</head>
<body>

<marquee>HTML Basic Tags</marquee>

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

<hr>

<p>This is a new paragraph.<br>


Web Tech lab is boring.<br>
Lord save me.</p>

<hr color="red">

<blockquote>
This is a blocked segment.<br>
The blockquote tag is used to define a block of text that is a quotation form and leaves a space at the
start.
</blockquote>

<hr>

<pre>
The text in this block is contained in a pre tag.
</pre>

<hr>

<p>
<b>This is a bold statement.</b>
<br>
<u>This line is underlined.</u>
<br>
<i>This line is italic.</i>
<br>
The chemical formula of water is H<sub>2</sub>O.
<br>
The time complexity of the bubble sort Algorithm is O(n<sup>2</sup>).
<br>
(a+b)<sup>2</sup> = a<sup>2</sup> + b<sup>2</sup> + 2ab
</p>

<hr color="yellow">

</body>
</html>

You might also like