-
Notifications
You must be signed in to change notification settings - Fork 0
/
program.html
33 lines (29 loc) · 1.19 KB
/
program.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
<!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/program.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>
</nav>
<pre class="card">
<code id="content-code"></code>
</pre>
<script type="text/javascript" src="static/javascript/commons.js"></script>
<script type="text/javascript" src="static/javascript/program.js"></script>
</body>
</html>