-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (103 loc) · 4.18 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>LARVA STEEL</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<style>
.whatsapp-item {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.whatsapp-icon img {
width: 50px; /* Set a fixed size for the WhatsApp icon */
height: 50px; /* Maintain aspect ratio and size consistency */
}
.whatsapp-icon {
display: block; /* Ensure the anchor is clickable */
}
@media (min-width: 768px) {
.whatsapp-item {
flex-direction: column; /* Center text and icons on desktop */
}
}
.row-cols-md-3 {
justify-content: center; /* Center the entire row on desktop */
}
</style>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex flex-column align-items-center">
<h1>Hello, there!</h1>
<h2>We're working hard to improve our website and we'll ready to launch after</h2>
<div class="countdown d-flex justify-content-center" data-count="2024/12/16">
<div>
<h3>%d</h3>
<h4>Days</h4>
</div>
<div>
<h3>%h</h3>
<h4>Hours</h4>
</div>
<div>
<h3>%m</h3>
<h4>Minutes</h4>
</div>
<div>
<h3>%s</h3>
<h4>Seconds</h4>
</div>
</div>
<h2>Best travel services with the best prices will be at your fingertips. STAY TUNED!</h2>
<h2>For offline bookings of flights, hotels, or packages, please contact us via WhatsApp:</h2>
<div class="container mt-4">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 justify-content-center g-3">
<!-- Dubai Branch 1 -->
<div class="col-auto whatsapp-item">
<p class="mb-0">Dubai Branch 1</p>
<a class="whatsapp-icon" href="https://wa.me/+971569923105" target="_blank" title="Contact Dubai Branch 1">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Icon">
</a>
</div>
<!-- Dubai Branch 2 -->
<div class="col-auto whatsapp-item">
<p class="mb-0">Dubai Branch 2</p>
<a class="whatsapp-icon" href="https://wa.me/+971505744902" target="_blank" title="Contact Dubai Branch 2">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Icon">
</a>
</div>
<!-- Bahrain Branch -->
<div class="col-auto whatsapp-item">
<p class="mb-0">Bahrain Branch</p>
<a class="whatsapp-icon" href="https://wa.me/+97337111008" target="_blank" title="Contact Bahrain Branch">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Icon">
</a>
</div>
</div>
</div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</div>
</header>
</body>
</html>