-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VTU CS</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="static/css/commons.css">
<link rel="stylesheet" href="static/css/index.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:700" rel="stylesheet">
</head>
<body>
<nav class="navbar sticky-top navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="/">
<img src="static/logo/logo.png" width="48" height="48" class="d-inline-block" alt="">
<div class="p-1 d-inline-block align-bottom">VTU CS Lab</div>
</a>
</div>
<div class="float-right navbar-header">
<a class="navbar-brand" href="#">Github</a>
<a class="navbar-brand" href="#">Privacy Policy</a>
</div>
</div>
</nav>
<div id="laboratories-div" class="card list-group list-group-flush"></div>
<script type="text/javascript" src="static/javascript/commons.js"></script>
<script type="text/javascript" src="static/javascript/index.js"></script>
</body>
</html>