HTML List
Mon May 04 2026 13:18:44 GMT+0000 (Coordinated Universal Time)
Saved by @ishant2009
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body bgcolor="yellow">
<center><h1>Questions 1</h1></center>
1. Ca(OH)<sub>2</sub> <br />
2. 2(A<sup>2</sup> + B<sup>2</sup>)<br />
3. H<sub>2</sub>SO<sub>4</sub><br />
4. (A+B+C)<sup>2</sup><br />
5. CO<sub>2</sub><br />
6.(X+Y)<sub>2</sub><br />
7. A<sup>4</sup><br />
8. NH3<br />
9. X <sup>3</sup><br />
10. (A+B)<sup>3</sup><br />
<center><h1>Questions 2</h1></center>
<h2>STREAM WISE CAREER OPTIONS</h2>
<ul type="square">
<li>science</li>
<ol type="a">
<li>Engineering</li>
<li>Medical</li>
<li>Research</li>
</ol>
</ul>
<ul type="square">
<li>Commerce</li>
<li>Humanities</li>
</ul>
<center><h1>Questions 3</h1></center>
<center><h2>List of states and their popular cities</h2></center>
<img src="NATION.JPG" width="100px" />
<ol>
<li>
Uttar Pradesh
<ul type="square">
<li>Lucknow</li>
<li>Banaras</li>
</ul>
</li>
<li>Bihar</li>
<li>Madhya Pradesh</li>
<li>
Punjab
<ul type=circle>
<li>Amritsar</li>
<li>Ludhiana</li>
</ul>
</li>
<li>Maharastra</li>
</ol>
<h2>User Details</h2>
<form>
Name : <input type="text"><br>
Gender : <input type="radio" name=selection gender>Male
<input type="radio" name=selection gender>Female
<input type="radio" name=selection gender>Other<br>
Hobbies :<br> <input type="checkbox" name=hobbies>Reading<br>
<input type="checkbox" name=hobbies>Travelling<br>
<input type="checkbox" name=hobbies>Cooking<br>
</form>
</body>
</html>



Comments