-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
77 lines (64 loc) · 1.95 KB
/
home.html
File metadata and controls
77 lines (64 loc) · 1.95 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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>assignment</title>
<style>
#main{
display: flex;
}
img{
height: 100px;
}
</style>
</head>
<body>
<div id="main">
<div>
<h2>Taxi</h2>
<img src="asset/assg1.jpg" alt="">
<h3>The Taxi You Know</h3>
<ul>
<li>Price based on taximeter</li>
<li>Executed by local taxi fleets</li>
<li>Online and offline payments</li>
<li>24/7 support hotline</li>
</ul>
</div>
<div>
<h2>Economy+</h2>
<img src="asset/assg2.jpg" alt="">
<h3>For Budget Travelers</h3>
<ul>
<li>Fixed price</li>
<li>English-speaking driver</li>
<li>Automated flight and train tracking</li>
<li>45 minutes waiting time after landing</li>
<li>Pickup with name sign in arrivals hall</li>
<li>Children seats available on request</li>
<li>Online and offline payment</li>
<li>24/7 support hotline</li>
</ul>
</div>
<div>
<h2>Business class</h2>
<img src="asset/assg1.jpg" alt="">
<h3>Business Traveler's Favourite</h3>
<ul>
<li>Black car guaranteed</li>
<li>Fixed price</li>
<li>English-speaking driver</li>
<li>Automated flight and train tracking</li>
<li>45 minutes waiting time after landing</li>
<li>Pickup with name sign in arrivals hall</li>
<li>Children seats available on request</li>
<li>Online and offline payment</li>
<li>24/7 support hotline</li>
</ul>
</div>
</div>
</body>
</html>