-
Notifications
You must be signed in to change notification settings - Fork 4
/
faq.html
153 lines (132 loc) · 5.96 KB
/
faq.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<html>
<html>
<head>
<title>FAQ</title>
<link rel="stylesheet" href="style.css">
<link rel="javascript" href="backend.js">
</head>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
background: #ffffff;
text-align: center;
position: relative;
}
#fieldset1{
width: 800px;
background: #ffffff;
color: rgb(0, 0, 0);
text-align: center;
border: 2px #2a2f3b solid;
width: 98%;
}
#fieldset2{
background: #ffffff;
border: 1px #ffffff solid;
box-shadow: 0 0.5em 1em rgba(0,0,0,0.2);
color: #000000;
text-align: center;
}
</style>
<body>
<div class="site-title">VITrip</div>
<div class="info-page">
<ul>
<li><a href="index.html">Home</a></li>
<li class="dropdown-Categories"><a href="search.html"></a>
<a href="javascript:void(0)" class="dropbtn-Categories">Categories</a>
<div class="dropdown-content-Categories">
<a href="academic-blocks.html">Academic Blocks</a>
<a href="#">Administrative Offices</a>
<a href="#">Shops</a>
<a href="#">Coffee Shops</a>
<a href="#">Hostel Blocks</a>
<a href="Restaurants.html">Restaurants</a>
<a href="#">ATMs</a>
<a href="#">Pickup Points</a>
<a href="#">Utilities</a>
<a href="#">Sports</a>
<a href="#">Gates</a>
<a href="#">Halls</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Landmarks</a>
<div class="dropdown-content">
<a href="#">Swimming Pool - MH</a>
<a href="#">Sports Complex - MH</a>
<a href="#">Dominos</a>
<a href="#">DC Bakery</a>
<a href="#">Private Copier Shop</a>
</div>
</li>
<li><a href="mainmap.html">Maps</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
<h1 style=text-align:center>Frequently Asked Questions</h1>
<button onclick="myFunction()" style="float: right; background-color:teal">Toggle mode</button>
<fieldset id="fieldset1">What is VITrip?
<fieldset id="fieldset2">
We provide you with a guide and a map to help you travel and explore differnt parts of the campus
</fieldset>
</fieldset>
<br>
<fieldset id="fieldset1">Can VITrip work on my phone?
<fieldset id="fieldset2">
VITrip is a wep app that can be accessed on any phone.
</fieldset>
</fieldset>
<br>
<fieldset id="fieldset1">Is Q-Block a good hostel?
<fieldset id="fieldset2">
Its the best hostel block for boys with CSE branch as its very close to the academic block and very clean.
</fieldset>
</fieldset>
<br>
<fieldset id="fieldset1">How is VIT Indoor gym?
<fieldset id="fieldset2">
A good quality gym. There is enough equipment for everyone in the gym.
But it is very small compared to the number of students who habe register for the gym. </fieldset>
</fieldset>
<br>
<fieldset id="fieldset1">Is the tennis court in VIT any good??
<fieldset id="fieldset2">
Good area to play and it's free. However only one court is maintained out of the two
</fieldset>
</fieldset>
<br>
<fieldset id="fieldset1">How is SJT annex?
<fieldset id="fieldset2">
This is a small building next to Silver Jubliee Tower in VIT. The annex building has a water treatment plant which supplies water to the complete campus.This building is good for those Faculty who want to work peacefully in their cabin during working hours but only con is the absence of a lift.
</fieldset>
</fieldset>
<br>
<fieldset id="fieldset1">How is the SMV building?
<fieldset id="fieldset2">
The building may be confusing to navigate on the very first day.The class rooms are quite small to accommodate 65-70 students together. Otherwise it's architecture is cool.
</fieldset>
</fieldset>
<br>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<script>
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</html>