forked from Rashminda121/NSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
55 lines (51 loc) · 1.97 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NSPACE</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- <header class="header">
<nav class="navbar">
<h2 class="logo"><a href="#">NSpace</a></h2>
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" id="hamburger-btn">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<path d="M3 12h18M3 6h18M3 18h18" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
</svg>
</label>
<ul class="links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Feedbacks</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div class="buttons">
<a href="signin.php" class="signin">Sign In</a>
<a href="#" class="signup">Sign Up</a>
</div>
</nav>
</header> -->
<section class="hero-section">
<div class="hero">
<h2>Welcome to NSpace Hostel Management System!</h2>
<p>
Best Place to find your dream hostel!
</p>
<div class="buttons">
<a href="landlord/signin.php" class="learn">Landlord</a>
<a href="warden/signin.php" class="learn">Warden</a>
<a href="student/signin.php" class="learn">Students</a>
<a href="admin/signin.php" class="learn">Admin</a>
</div>
</div>
<div class="img">
<img src="https://www.codingnepalweb.com/demos/create-responsive-website-html-css/hero-bg.png"
alt="hero image" />
</div>
</section>
</body>
</html>