-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (100 loc) · 3.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dashboard | PGLife</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet" />
<link href="css/common.css" rel="stylesheet" />
<link href="css/property_list.css" rel="stylesheet" />
</head>
<body>
<div class="header sticky-top">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="index.html".html">
<img src="img/logo.png" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#my-navbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="my-navbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="signup_modal.html" data-toggle="modal" data-target="#signup-modal">
<i class="fas fa-user"></i>SignUp
</a>
</li>
<div class="nav-vl"></div>
<li class="nav-item">
<a class="nav-link" href="Login_modal.html" data-toggle="modal" data-target="#login-modal">
<i class="fas fa-sign-in-alt"></i>Login
</a>
</li>
</ul>
</div>
</nav>
</div>
<div>
<img class="image" src="img/bg.png" />
<input class="search-bar" type="text" id="city" name="city" placeholder="Enter your city to search for PGs">
<button type="submit" class="search-button">
<i class="fa fa-search"></i>
</button>
</div>
<div class="major-cities">
Major cities
</div>
<div class="cities">
<ul>
<li>
<button class="mid_button">
<a href="property_list.html"><img src="img\bangalore.png" width="100px" height="100px"/> </a>
</button>
</li>
<li>
<button class="mid_button" >
<a href="property_list.html"><img src="img\mumbai.png" width="100px" height="100px"/> </a>
</button>
</li>
<li>
<button class="mid_button">
<a href="property_list.html"><img src="img\hyderabad.png" width="100px" height="100px"/> </a>
</button>
</li>
<li>
<button class="mid_button">
<a href="property_list.html"><img src="img\chennai.png" width="100px" height="100px"/> </a>
</button>
</li>
</ul>
</div>
<div class="footer">
<ul>
<li>
<a class="footer_button" href="property_list.html">
PG in Bangaluru
</a>
</li>
<li>
<a class="footer_button" href="property_list.html">
PG in Mumbai
</a>
</li>
<li>
<a class="footer_button" href="property_list.html">
PG in Hyderabad
</a>
</li>
<li>
<a class="footer_button" href="property_list.html">
PG in Chennai
</a>
</li>
</ul>
<p>
mycopyright@2021
</p>
</div>
</body>
</html>