Page 367 - Web Applications (803) Class 11
P. 367
<p> <br> <br>
<img src=”smiley2.png” width=”120” height=”80” align=”right”/>
In Karnataka, the Kaveri divides and creates two islets. The first is in
Shivanasamudra, where she plunges as the Gagana Chukki and Bara Chukki
Falls and forges the island of Srirangapatna close to Mysore. In Tamil Nadu,
Srirangam is the third island. </p> </font>
</body>
</html>
12. Develop a simple webpage that has an unordered list and an ordered list. Use appropriate tags to format the text
and add images.
Ans.
<html>
<head>
<title>My Webpage</title>
</head>
<body bgcolor=pink text=green>
<h1>Welcome to my webpage</h1>
<h2>About me</h2>
<p>My name is Sanat and I’m a web developer. I love creating websites and
learning new technologies. In my free time, I enjoy reading, playing computer
games, and spending time with my family.</p>
<h2>My hobbies</h2>
<ul>
<li>Reading</li>
<li>Hiking</li>
<li>Playing computer games</li>
</ul>
<h2>My favorite food</h2>
<ol>
<li>Pizza</li>
<li>Chowmein</li>
<li>Burger</li>
</ol>
Practical Work 365

