-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshakes menu (2).html
120 lines (110 loc) · 2.48 KB
/
shakes menu (2).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
110
111
112
113
114
115
116
117
118
119
120
<html>
<head>
<title>reasturant menu list</title>
<style>
.ab{
color:red;
font-size:50px;
font-family:monospace;
style-border="1px";
}
.bc{color:gray;
font-size:50px;
font-family:monospace;
style-border="1px";
}
.er{
color:white;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.qw{
color:white;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.as{
color:blue;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.df{
color:pink;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.gh{
color:green;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.jk{
color:orange;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.lm{
color:yellow;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.zx{
color:red;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.cv{
color:purple;
font-size:40px;
font-family:cursive;
style-border="1px";
}
.bn{
color:orange;
font-size:40px;
font-family:cursive;
style-border="1px";
}
</style>
</head>
<body style="background-color:black;>
<h1 class="ab">menu</h1>
<h2 class="bc">SHAKES</h2>
<ul>
<li class="as">chocolate shakes</li>
<ol class="er">
<li>oreo shakes price-120RS</li><input type="submit" value="order now"/>
<li>dairy milk shakes price-120RS</li><input type="submit" value="order now"/>
<li>kitkat shakes price-100RS</li><input type="submit" value="order now"/>
</ol>
<br>
<li class="df">milk shakes price-70RS</li><input type="submit" value="order now"/>
<br>
<li class="gh">bell shakes price-50RS</li><input type="submit" value="order now"/>
<br>
<li class="jk">fruits shakes</li>
<ol class="qw">
<li>apple shakes price-80RS</li><input type="submit" value="order now"/>
<li> banana shakes price-60RS</li><input type="submit" value="order now"/>
<li> kiwi shakes price-70RS</li><input type="submit" value="order now"/>
<li> stawberry shakes price-70RS</li><input type="submit" value="order now"/>
</ol>
<br>
<li class="lm">vanilla shakes price-50RS</li><input type="submit" value="order now"/>
<br>
<li class="zx">smoothie shakes price-100RS</li><input type="submit" value="order now"/>
<br>
<li class="cv">chikoo&banana shakes price-60RS</li><input type="submit" value="order now"/>
<br>
<li class="bn">panch shakes price-70RS</li><input type="submit" value="order now"/>
</ul>
</body>
</html>