-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.77 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./card-flip.css">
<title>Card Flip</title>
</head>
<body>
<div class="container">
<div class="card-container">
<div class="card-content">
<div class="card card-front">
<div class="tour-image tour-image-1"></div>
<div class="title tour-card-title">
<span class="tour-title tour-one-title">The Sea Explorer</span>
</div>
<div class="tour-detail">
<ul class="text-center">
<li>3 Days Tour</li>
<li>Up to 30 people</li>
<li>2 Tour Guides</li>
<li>Sleep in cozy hotels</li>
<li>Difficulty: Easy</li>
</ul>
</div>
</div>
<div class="card card-back card-back-1">
<div class="tour-book text-center">
<div class="tour-price">
<p class="only-text">Only</p>
<p class="price">$297</p>
</div>
<a href="#popup" class="btn discover-tour-btn discover-tour-btn-white tour-book-btn">Book now!</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>