-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.76 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./src/assets/marker.ico" type="image/x-icon">
<meta http-equiv="refresh">
<title>NIT miniMap</title>
</head>
<body
style="background-size:cover;background-color: black;background-repeat: no-repeat;background-position: top; background-image:url('./src/assets/background.svg'); max-width:100vw">
<div class="navbar"
style="height: 10vh; width:100%; left:0%; top:0%; background-color:rgba(160, 171, 180, 0.032);display:flex ; justify-content:center;box-shadow: 2px 1px 2px 2px #ff0000;">
<a style="text-decoration: none;cursor: pointer;" href="./src/landing.html">
<h1 style="color: aliceblue;opacity:1;text-shadow: 2px 2px #ff0000;">NIT MiniMap</h1>
</a>
</div>
<div class="front_screen" style="height: 88vh;display: flex; align-items: center;
justify-content: center;">
<div class="front_screen_content" style="color: aliceblue;opacity:1;text-shadow: 2px 2px #ff0000;height: 88vh;display: flex; align-items: center;flex-direction:column;justify-content: center;">
<img src="./src/assets/logo.png" alt="NIT miniMap" class="logo" style="box-shadow: 2px 2px 2px 2px #ff0000;padding:2% ">
<h1>NIT miniMap</h1>
<h2>Find your way around the campus</h2>
<button style="background-color: #ff0000; color: aliceblue; border: none; padding: 1% 2%; border-radius: 5px; cursor: pointer; font-size: 1.2rem; box-shadow: 2px 2px 2px 2px #ff0000;" onclick="window.location.href='./src/landing.html'">Get Started !!</button>
</div>
</div>
</body>
</html>