-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodule-2-soln.html
32 lines (30 loc) · 991 Bytes
/
module-2-soln.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/demo.css">
</head>
<meta charset="utf-8">
<title>Assignment solution for module 2</title>
<body>
<h1>Our Menu</h1>
<div class="txt">
<div class=" txtHeading txtHeading1">
<h3>Chicken</h3>
</div>
<p>Lorem ispum is simply dummy text of the rinting and typsetting industry. Lorem Ipsum has been the industry's standard dummy text ever.</p>
</div>
<div class="txt">
<div class="txtHeading txtHeading2">
<h3>Beef</h3>
</div>
<p>Lorem ispum is simply dummy text of the rinting and typsetting industry. Lorem Ipsum has been the industry's standard dummy text ever.</p>
</div>
<div class="txt txt1">
<div class="txtHeading txtHeading3">
<h3>Sushi</h3><!-- okay -->
</div><br></br>
<p>Lorem ispum is simply dummy text of the rinting and typsetting industry. Lorem Ipsum has been the industry's standard dummy text ever.</p>
</div>
</body>
</html>
#code