-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcities.php
More file actions
executable file
·43 lines (40 loc) · 2.49 KB
/
cities.php
File metadata and controls
executable file
·43 lines (40 loc) · 2.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Book It Up</title>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/typicons/2.0.9/typicons.min.css">
<link rel="stylesheet" href="assets/fonts/fontawesome5-overrides.min.css">
<link rel="stylesheet" href="assets/css/styles.min.css">
</head>
<body style="background-image: url("assets/img/imageedit_1_4950231297.jpg");background-size: cover;background-repeat: no-repeat;">
<?php include("citiesPHP.php"); ?>
<div class="container main-container">
<div class="row cities-row" style="position: absolute;top: 30%;">
<div class="col">
<div>
<p style="color: rgba(0,0,0,1);font-size: xx-large;background-color: white;font-weight: 700;font-family: Montserrat, sans-serif;padding: 10px;width: 300px;">BookItUp!</p>
</div>
<h1 class="city" style="font-family: Montserrat, sans-serif;font-weight: 700;">Pune</h1>
<h1 class="city" style="font-family: Montserrat, sans-serif;font-weight: 700;">Mumbai</h1>
<h1 class="city" style="font-family: Montserrat, sans-serif;font-weight: 700;">Delhi</h1>
<h1 class="city" style="font-family: Montserrat, sans-serif;font-weight: 700;">Bangalore</h1>
</div>
</div>
<hr>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.bundle.min.js"></script>
</body>
</html>