-
Notifications
You must be signed in to change notification settings - Fork 0
/
coding assignment 2
83 lines (75 loc) · 3.2 KB
/
coding assignment 2
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Assignment Solution For Module 2</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="main_head">Our Menu</h1>
<div class="main_container">
<div class="content_box">
<div class="box_head">
<h2>Chicken</h2>
</div>
<p class="box_content">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
</p>
</div>
<div class="content_box">
<div class="box_head">
<h2>Beef</h2>
</div>
<p class="box_content">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
</p>
</div>
<div class="content_box">
<div class="box_head">
<h2>Sushi</h2>
</div>
<p class="box_content">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
</p>
</div>
</div>
</body>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Assignment Solution For Module 2</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="main_head">Our Menu</h1>
<div class="main_container">
<div class="content_box">
<div class="box_head">
<h2>Chicken</h2>
</div>
<p class="box_content">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
</p>
</div>
<div class="content_box">
<div class="box_head">
<h2>Beef</h2>
</div>
<p class="box_content">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
</p>
</div>
<div class="content_box">
<div class="box_head">
<h2>Sushi</h2>
</div>
<p class="box_content">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
</p>
</div>
</div>
</body>
</html>