Web Development Program
Web Development Program
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