forked from GeekHaven/Webd-Geekcamp-23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
109 lines (89 loc) · 2.14 KB
/
index1.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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>Document</title>
<style>
tr:hover{
background-color: dimgray;
}
.mn{
border: 10px;
padding: 5px;
margin: 5px;
}
</style>
</head>
<body style="background-color: black;color: white;">
<centre>
<h1 style="background-color: cornsilk;color: brown;align-self: auto;">UGLY MUG CAFE</h1>
<centre>
<h2 style="height:10px;">♥ A place to cherish ♥</h2>
</centre> <p>A perfect place for your beloed ones</p>
<div id="'mnd">
<div id="ca">
<!-- <h2 style="align-self: center;"> coffee</h2> -->
<table class="mn">
<tr>
<td>Expresso</td>
<td>80Rs</td>
</tr>
<tr>
<td>Americano</td>
<td>150Rs</td>
</tr>
<tr>
<td>cappuccino</td>
<td>100RS</td>
</tr>
<tr>
<td>Mocha</td>
<td>150</td>
</tr>
</div>
<div id="ac">
<!-- <h2 style="align-self: center;"> snacks</h2> -->
<table class="mn">
<tr>
<td> Grilled Cheese Sandwich</td>
<td>80Rs</td>
</tr>
<tr>
<td>Cheesy Berger</td>
<td>120Rs</td>
</tr>
<tr>
<td>Noodles</td>
<td>200Rs</td>
</tr>
<tr>
<td>Manchorian </td>
<td>200Rs</td>
</tr>
</div>
<div id="'ab">
<!-- <h2 style="align-self: center;"> MILK SHAKES</h2> -->
<table class="mn">
<tr>
<td>Badam</td>
<td>80Rs</td>
</tr>
<tr>
<td>Kesar</td>
<td>120Rs</td>
</tr>
<tr>
<td>Chocolate</td>
<td>100RS</td>
</tr>
<tr>
<td>Cashew</td>
<td>150</td>
</tr>
</div>
</div>
<a href="feedback.html"> Click for feedback</a>
</body>
</html>