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