-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (41 loc) · 1.51 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container {
display: flex;
flex-direction: column;
}
.desc {
display: flex;
justify-content: space-between;
align-items: center;
}
.container img {
margin: 15px;
}
.container h1 {
text-align: center;
padding-block: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Who is Tourly?</h1>
<img src="https://tourly.pt/static/media/about-us.d8100266.webp" alt="img">
<div class="desc">
<div class="left-desc">
<p>Travel can be one of the most rewarding forms of introspection.-- Lawrence Durrell</p>
</div>
<div class="right-desc">
<p>Tourly is a revolutionary digital marketplace connecting tour operators to sales associates and tourists. It'll show you every tour or activity that's available, all in one place - whether you're looking to sell to other people or whether you're a tourist yourself and want to buy beforehand.
Tourly is your new best friend! The one who'll make your adventurous travelling life easier even when you think it's already easy!</p>
</div>
</div>
</div>
</body>
</html>