-
Notifications
You must be signed in to change notification settings - Fork 0
/
task2.html
64 lines (57 loc) · 1.75 KB
/
task2.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
<html>
<head>
<title>
Food ordering system
</title>
</head>
<body bgcolor="cyan">
<center>
<font color="red" size="30" face="arial">
<b>Food Ordering System</b>
</font>
<br>
<pre> ... choose your meal</pre>
</center>
<br>
<small>Note: Use pre tag to display text.</small>
<hr color="yellow">
<ol type="a" start="27">
<li>Morning breakfast
<ul type="disc">
<li>Poha</li>
<li> <font color="blue">Drink</font>
<ol type="I" reversed>
<li>Milk</li>
<li><font color="red">Tea and coffee</font>
<ol type="a">
<li>Tea</li>
<li>Hot coffee <sub>2.0</sub></li>
<li><strike>Cold coffee</strike></li>
<li><u>Green Tea <sup>(Himalayan)</sup></u></li>
</ol>
</li>
<li>Cold Drink</li>
</ol>
</li>
</ul>
</li>
<li>Lunch
<ul type="none">
<li>dal/rice</li>
<li><b> sabji</b></li>
<ol type="A" >
<li>
<a href="https://m.tarladalal.com" target="_top">gujarati sabji</a>
</li>
<li>
punjabi sabji
</li>
</ol>
</ul>
</li>
<li>
dinner
</li>
</ol>
</body>
</html>