-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quantathon</title>
<link rel="icon" type="image/x-icon" href="Images/logo.png" />
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="main">
<div class="nav">
<div class="navleft"><img src="Images/logo.png" /> Safest Path</div>
<button>Contact Us</button>
</div>
<div class="toggles">
<div class="switches">
<p>Walk</p>
<label class="switch">
<input type="checkbox" onclick="changeG()" />
<span class="slider round"></span>
</label>
</div>
<div class="switches">
<p>Unsafe</p>
<label class="switch">
<input type="checkbox" onclick="changeE()" />
<span class="slider round"></span>
</label>
</div>
</div>
<div class="mainbody">
<div class="loginbox">
<div class="logintop">
<h1>Welcome To SAFEST PATH</h1>
<p>Add in your Start and End Location</p>
</div>
<div class="loginbottom">
<form>
<label for="from">From</label>
<input type="text" id="from" placeholder="Start" />
<select name="Values" id="selectfrom" onchange="changeFrom()">
<option class="val" id="adddata" value="fromdata">
Choose a Value
</option>
</select>
<label for="to">Destination</label>
<input type="text" id="to" placeholder="End" />
<select name="Values" id="selectto" onchange="changeTo()">
<option class="val" id="adddata" value="todata">
Choose a Value
</option>
</select>
</form>
<button onclick="newfun();displayprompt()" class="search">
Search
</button>
</div>
</div>
<div class="prompt">
<h1 id="result"></h1>
</div>
</div>
<div class="footer">
<p>Copyrights @ Byte Hogs</p>
<h2>Team</h2>
<ul>
<li>Devesh Patel</li>
<li>Taranjeet Singh Bedi</li>
<li>Animesh Jha</li>
<li>Tanuj Singh</li>
<li>Abhinav Singh</li>
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>