-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
49 lines (47 loc) · 987 Bytes
/
Copy pathpractice.html
File metadata and controls
49 lines (47 loc) · 987 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="link" href="images/car6.jpeg">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
h1{
font-family: Ani;
font-size: 40px;
background-color: darkslategrey;
}
h2{
font-family: aakar;
font-size: 40px;
background-color: greenyellow;
}
body{
font-family: "DejaVu Sans Mono";
font-size: 40px;
background-color: green;
}
</style>
<body>
<h1>list of fruits</h1>
<h2>oredered list of fruits</h2>
<ol>
<li>mangoes</li>
<li>oranges</li>
<li>passion</li>
<li>strawberry</li>
<li>kiwi</li>
</ol>
<h1>list of fruits</h1>
<h2>unordered list</h2>
<ul>
<li>guava</li>
<li>thorn melon</li>
<li>watermelon</li>
<li>lemon</li>
</ul>
</body>
</html>