0% found this document useful (0 votes)
19 views

(221902001) Assignment-2

Uploaded by

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

(221902001) Assignment-2

Uploaded by

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

Green University of Bangladesh

Department of Computer Science and Engineering (CSE)


Faculty of Sciences and Engineering

Semester: (Spring, Year:2024), B.Sc. in CSE (Day)

Assignment-02
Course Title: Web Programming Lab
Course Code: CSE 302. Section: 213- D16.

Student Details

Student Name ID
Hasnat Zamil 221902001

Submission Date : 29/02/2024


Course Teacher’s Name : Sakhaouth Hossan

Lab Report Status


Marks: ………………………………… Signature:.....................
Comments:.............................................. Date:..............................
IMPLEMENTATION
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF−8">
<meta http−equiv="X−UA−Compatible" content="IE=edge">
<meta name="viewport" content="width=device−width, initial−scale=1.0">
<title>List Eeperiment</title>
</head>
<body>
<h2><mark> UNORDER LIST</mark></h2>

<ul>
<li>Burger and fresch fries</li>
<li> Cheese Burger</li>
<li>Chicken Roll</li>
<li>Thai soup</li>
<li>Corn Soup</li>
<li>Sushi</li>
</ul>

<h2><mark>ORDER LIST</mark> </h2>


<ol>
<li>Grilled and Ginger</li>
<li>Sushi</li>
<li>Lofstar</li>
<li>Cheese soup</li>
</ol>

<h3><mark>NESTED LISTS INSIDE OF UNORDERLISTS</mark></h3>


<ul>
<li> Sub Sandwiches
<ul>
<li> Chicken Pasta with Cheese</li>
<li>Grilled Cheese</li>
</ul>
</li>
<li>Snacks
<ul>
<li>Nacho Cheese French Fries</li>
<li>Cheese and crackers</li>
</ul>
</li>
<li> Corn Soups
<ul>
<li>Cheese soup</li>
</ul>
</li>
<li>Sushi
<ul>
<li>Spicy Rolls</li>
<li>Egg Rolls</li>
</ul>
</li>
</ul>

<h3><mark> NESTED LISTS INSIDE OF ORDER LISTS</mark></h3>


<ol>
<li> Sub Sandwiches
<ol>
<li>Spicy Rolls</li>
<li>Grilled Chicken</li>
</ol>
</li>
<li>Snacks and Drinks
<ol>
<li>Nacho Cheese French Fries</li>
<li>Cheese and crackers</li>
</ol>
</li>
<li>Soups
<ol>
<li>Cheese soup</li>
</ol>
</li>
<li>Sushi
<ol>
<li>Salmon Rolls</li>
<li>Egg Rolls</li>
</ol>
</li>
</ol>
</body>
</html>
OUTPUT

You might also like