-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdepartments.html
87 lines (74 loc) · 3.18 KB
/
departments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>PRISM - Department</title>
<!-- Load Core Materialize CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Cabin|PT+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<link rel="stylesheet" href="css/departments.css">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
<link rel="icon" href="/favicon.png" type="image/x-icon">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113139994-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-113139994-2');
</script>
</head>
<body>
<div class="each-dept-page-banner">
<div style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(0,0,0,0.6);"></div>
<div style="position: absolute; bottom: 0;width: 100%; color:#fff;">
<div class="container">
<div class="row">
<h1 class="welcome-text">Departments - NITK!</h1>
</div>
<div class="row">
This section is made to help students make an informed choices about the Departments in NITK.<br>
Please make sure you have all the information that you need to make that decision.<br><br><br>
</div>
<div class="row">
<a href="department_index.html" class="button">Back to Departments</a>
<br><br><br>
</div>
</div>
</div>
</div>
<div class="container flow-text">
<div class="row white ">
<div class="col s12">
<div class="department_building"></div>
<p class="pt-sans" style="text-align: center">Building of <span class="department_name"></span></p>
<hr>
<h3 class="pt-sans">Introduction</h3>
<div class="intro"></div>
<hr>
<h3 class="pt-sans">What is <span class="department_name"></span> all about?</h3>
<div class="definition"></div>
<hr>
<h3 class="pt-sans">Courses to be taken?</h3>
<div class="course_information"></div>
<hr>
<h3 class="pt-sans">Specialization in <span class="department_name"></span></h3>
<div class="core_specializations"></div>
<hr>
<h3 class="pt-sans">What to do after <span class="department_name"></span>?</h3>
<div class="pg-options"></div>
<hr>
<h3 class="pt-sans"><span class="department_name"></span> Department - NITK</h3>
<div class="department-link"></div>
</div>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
<script type="text/javascript" src="js/departments.json"></script>
<script type="text/javascript" src="js/department_load.js"></script>
</body>
</html>