0% found this document useful (0 votes)
2 views1 page

Web Development Practical 4

Web Development practical 3 for BCA 1st Sem students. Nested if else

Uploaded by

lecivi3208
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Web Development Practical 4

Web Development practical 3 for BCA 1st Sem students. Nested if else

Uploaded by

lecivi3208
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!-- Write a code to create webpage using nesting of lists.

-->
<!DOCTYPE html>
<html>
<head>
<title> This is the 4th Practical </title>
</head>
<body>
<h2>A Nested List</h2>
<!-- A nested list in HTML is a list that contains another list
You can create nested ordered lists, nested unordered lists, or nested
ordered lists inside unordered lists. -->
<p>Lists can be nested (list inside list):</p>
<h4>Bevrages List</h4>
<ul> <li>Milk</li>
<li>Espresso</li>
<li>Coffee</li>
<li>Tea</li>
<ul>
<li>Black Tea</li>
<li>Green Tea</li>
</ul>
<li>Shake</li>
<ul>
<li>Mango shake</li>
<li>Oreo shake</li>
<li>Milk shake</li> </ul>
<li>Juice</li>
<ul> <li>Orange Juice</li>
<li>Pineapple Juice</li>
<li>Mango Juice</li> </ul>
</ul>
</body>
</html>

You might also like