Lists in HTML
Full Stack Web Development Courses with Real-time projects Start Now!!
Program 1
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome</h1>
<h2>Welcome</h2>
<h3>Welcome</h3>
<h4>Welcome</h4>
<h5>Welcome</h5>
<h6>Welcome</h6>
<p><b><u><i>This is my website</i></u></b></p>
<p>H<sub>2</sub>O</p>
<p>a<sup>3</sup></p>
<p>5<10</p>
<p>></p>
<p>"Where there is a will there is a way "</p>
<p>John's homework is incomplete</p>
<p>©</p>
<p>®</p>
<p>This is HTML Page</p>
<p>$</p>
<p>£</p>
<p>¢</p>
<ol type="I">
<li>tea</li>
<li>milk</li>
<li>coffee</li>
</ol>
<ul type="square">
<li>first</li>
<li>second</li>
<li>third</li>
</ul>
<dl>
<dt>HTML</dt>
<dd>It is the language of browser to display content on web page</dd>
<dt>CSS</dt>
<dd>It is used to design web page</dd>
</dl>
<a href="http://www.google.com" target="_blank">Click</a>
<a href="http://www.google.com" target="_blank"><img src="C:\Users\Lenovo\Downloads\bird.jpg"></a>
</body>
</html>
Did we exceed your expectations?
If Yes, share your valuable feedback on Google

