-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter3.html
More file actions
43 lines (41 loc) · 1.15 KB
/
chapter3.html
File metadata and controls
43 lines (41 loc) · 1.15 KB
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
<!DOCTYPE html>
<!--this website is for showing my fruit list-->
<html>
<head>
<meta charset ="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<title>Fruit basket list</title>
<body>
<ul>
<!--unorder list-->
<li>mango</li>
<li>guava</li>
<li>apple</li>
<li>orange</li>
</ul>
<ol>
<!--order list-->
<li>amla</li>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<li>sakali</li>
<li>banana</li>
<li>fig</li>
<li>water melon</li>
<li>lemon</li>
</ol>
<dl>
<!--descriptive list-->
<dt>chai story</dt>
<dd>assam tea is good </dd>
<dd>bengal tea is rich in falvours</dd>
<dd>herbel tea is good for sugar patients</dd>
<dd>coffe vvs ta is very big debate in India</dd>
<dd>biscuit take with chai every morning is a famous thing to do in the morning</dd>
</dl>
</body>
</html>