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

HTML Text Formatting and Star Pyramid

The document contains two practical HTML exercises. The first demonstrates various text formatting tags such as bold, italic, and underlined text, along with a hyperlink. The second exercise illustrates how to create a star pyramid using preformatted text in HTML.

Uploaded by

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

HTML Text Formatting and Star Pyramid

The document contains two practical HTML exercises. The first demonstrates various text formatting tags such as bold, italic, and underlined text, along with a hyperlink. The second exercise illustrates how to create a star pyramid using preformatted text in HTML.

Uploaded by

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

PRACTICAL 1

[Link] all the text formatting tags in a single HTML page.


Source Code:
<!DOCTYPE html>
<html lang="en">
<title>HTML tags</title>
</head>
<body>
<h1>HTML TAGS</h1>
<p>Demonstarting all text formatting tags in a single HTML Page</p>
<br>
<b>BOLD TEXT</b>
<i>italic</i>
<br>
<u>Text is underlined</u>
<hr>
<sub>2</sub><sup>8</sup>
<pre>Preformatted Text
(Maintains spaces and line breaks) </pre>
<a href=" [Link] Google</a>
</body>
</html>
OUTPUT:

Akanksha Negi E1 07
PRACTICAL 2
2. Write an HTML code to draw the following figure.
*
* *
* * *
* * * *
* * * * *

Source Code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Star Pyramid</title>
</head>
<body>
<h2>Star Pyramid </h2>
<pre>
*
* *
* * *
* * * *
* * * * *
</pre>
</body>
</html>
OUTPUT:

Akanksha Negi E1 07

You might also like