-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (104 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QTrip</title>
<link rel="stylesheet" href="css/styles.css" />
<!-- TODO: MODULE_LAYOUT -->
<!-- 1. Create a <link> to the first stylesheet needed for Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
</head>
<!-- <header> -->
<!-- TODO: MODULE_LAYOUT -->
<!-- 1. Use appropriate css classes on nav element. -->
<!-- 2. Add child elements as required. -->
<nav class="navbar navbar-light navbar-expand-lg d-flex">
<div class="container-fluid">
<a href='/' class='nav-link'>
<h2>QTrip</h2>
</a>
<!-- Trigger -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarItems">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Target -->
<div class="navbar-collapse justify-content-end" id="navbarItems">
<ul class="navbar-nav justify-content-end">
<li class="nav-item">
<a href="#" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="pages/adventures/index.html" class="nav-link">Explore</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- TODO: MODULE_LAYOUT -->
<!-- 1. Use appropriate css classes on the hero image container element. -->
<!-- 2. Add child elements as required. -->
<div class="hero-image d-flex flex-column align-items-center justify-content-center ">
<div class="text-center">
<h1 class="hero" style="font-size:25px;color: azure;">
Welcome to QTrip
</h1>
<h2 class="hero-subheading">
Explore the world with fantastic places to venture around
</h2>
<input class="hero-input" type="text" name="fname" placeholder="Search a City">
<br>
</div>
</div>
<!-- </header> -->
<body>
<!-- TODO: MODULE_LAYOUT -->
<!-- 1. Create the grid like layout as required. -->
<div class=container style="margin-top: 50px;">
<div class="row">
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<div><a href='pages/adventures/index.html'><img src="assets/bengaluru.jpg" class="tile-image" alt="bengaluru"></a></div>
<div <a href='pages/adventures/index.html' class="tile-text">Bengaluru <br> 100+ Places</a> </div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<div><a href='pages/adventures/index.html'></a><img src="assets/dubai.jpg" class="tile-image" alt="dubai"></a></div>
<div><a href='pages/adventures/index.html' class="tile-text">Dubai <br> 120+ Places</a></div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<img src="assets/goa.jpg" class="tile-image" alt="goa">
<div><a href='pages/adventures/index.html' class="tile-text">Goa <br> 150+ Places</a></div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<img src="assets/kolkata.jpg" class="tile-image" alt="kolkata">
<div><a href='pages/adventures/index.html' class="tile-text">Kolkata <br> 180+ Places</a></div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<img src="assets/malaysia.jpg" class="tile-image" alt="malaysia">
<div><a href='pages/adventures/index.html' class="tile-text">Malaysia <br> 210+ Places</a></div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<img src="assets/mumbai.jpg" class="tile-image" alt="mumbai">
<div><a href='pages/adventures/index.html' class="tile-text">Mumbai <br> 240+ Places</a></div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<img src="assets/paris.jpg" class="tile-image" alt="paris">
<div><a href='pages/adventures/index.html' class="tile-text">Paris <br> 270+ Places</a></div>
</div>
<div class="tile col-sm-6 col-lg-3 mb-4 col-md-4">
<img src="assets/singapore.jpg" class="tile-image" alt="singapore">
<div><a href='pages/adventures/index.html' class="tile-text">Singapore <br> 300+ Places</a></div>
</div>
</div>
</div>
</body>
<footer>
<div class="container" style="margin-bottom: 15px;">© QTrip 2020</div>
</footer>
<!-- TODO: MODULE_LAYOUT -->
<!-- Add scripts needed for bootstrap to work -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>