forked from adityachirania/OS-SIMULATOR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
212 lines (156 loc) · 4.96 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html>
<title>OS Simulator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--stylesheet-->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="styles/styles.css" rel="stylesheet" type="text/css">
<link href="styles/custom-responsive-styles.css" rel="stylesheet" type="text/css">
<!--scripts-->
<script type="text/javascript" src="scripts/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="scripts/all-plugins.js"></script>
<script type="text/javascript" src="scripts/plugins-activate.js"></script>
<body id="page-top">
<div class="logo">
<i class="fa fa-desktop" aria-hidden="true"></i>
</div>
<!-- Navigation -->
<a class="menu-toggle rounded" href="#">
<i class="fa fa-bars"></i>
</a>
<nav id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a class="smooth-scroll" href="#Header"></a>
</li>
<li class="sidebar-nav-item">
<a href="index.html" >HOME</a>
</li>
<li class="sidebar-nav-item">
<a href="about-topics.html" > Topics</a>
</li>
<li class="sidebar-nav-item">
<a href="#contact" > Team members</a>
</li>
</ul>
</nav>
<!-- Header Starts -->
<section id="Banner" class="content-section">
<div id="home" class="container content-wrap text-center">
<h1>OS SIMULATOR</h1>
<a class="btn btn-primary btn-xl " href="about-topics.html">View Topics</a>
</div>
<div class="overlay"></div>
</section>
<!-- Header Ends -->
<div id="contact">
<h2 align="center" >TEAM MEMBERS</h2>
<div class="w3-container" style="padding:128px 16px" >
<table>
<tr>
<th>Member Name</th>
<th>Roll Number</th>
</tr>
<tr>
<td>Jay Faldu</td>
<td>181CO101</td>
</tr>
<tr>
<td>Abhishek Patil</td>
<td>181CO102</td>
</tr>
<tr>
<td>Adithi Srinath</td>
<td>181CO103</td>
</tr>
<tr>
<td>Aditya Chirania</td>
<td>181CO104</td>
</tr>
<tr>
<td>Akshay Dhayal</td>
<td>181CO105</td>
</tr>
<tr>
<td>Ankit Raj</td>
<td>181CO106</td>
</tr>
<tr>
<td>Ansen Antony</td>
<td>181CO107</td>
</tr>
<tr>
<td>Anusha P Das</td>
<td>181CO108</td>
</tr>
<tr>
<td>Arjun A</td>
<td>181CO109</td>
</tr>
<tr>
<td>Arti Rajendra Awale</td>
<td>181CO110</td>
</tr>
<tr>
<td>Sri Lalitha</td>
<td>16CO106</td>
</tr>
</table>
</div>
</div>
</div>
<div class="footer">
<h3>NIT-K CS-252, 2020</h3>
</div>
<!-- Add Google Maps -->
<script>
function myMap()
{
myCenter=new google.maps.LatLng(41.878114, -87.629798);
var mapOptions= {
center:myCenter,
zoom:12, scrollwheel: false, draggable: false,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById("googleMap"),mapOptions);
var marker = new google.maps.Marker({
position: myCenter,
});
marker.setMap(map);
}
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Change style of navbar on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-black";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>