-
Notifications
You must be signed in to change notification settings - Fork 0
/
department.html
92 lines (92 loc) · 3.47 KB
/
department.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="bower_components/mui/packages/cdn/css/mui.min.css" rel="stylesheet" type="text/css" />
<link href="styles/main.css" rel="stylesheet" type="text/css" />
<script src="bower_components/mui/packages/cdn/js/mui.min.js"></script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div id="sidedrawer" class="mui--no-user-select">
<div id="sidedrawer-brand" class="mui--appbar-line-height mui--text-title"><img src="https://placehold.it/150x150"></div>
<ul>
<li>
<strong><a href="index.html">Home</a></strong>
</li>
<li>
<strong><a href="login.html">Login</a></strong>
</li>
<li>
<strong><a href="about.html">About Us</a></strong>
</li>
<li>
<strong><a href="contact.html">Contact Us</a></strong>
</li>
</ul>
</div>
<header id="header">
<div class="mui-appbar mui--appbar-line-height">
<div class="mui-container-fluid">
<a class="sidedrawer-toggle mui--visible-xs-inline-block mui--visible-sm-inline-block js-show-sidedrawer">☰</a>
<a class="sidedrawer-toggle mui--hidden-xs mui--hidden-sm js-hide-sidedrawer">☰</a>
<span class="mui--text-title mui--hidden-xs-inline-block mui--hidden-sm-inline-block">myWorkspace</span>
<span class="mui--text-title mui--visible-xs-inline-block mui--visible-sm-inline-block">myWorkspace</span>
</div>
</div>
</header>
<div id="content-wrapper">
<div class="mui--appbar-height"></div>
<div class="mui-container-fluid">
<div class="mui-panel">
<h1 class="mui--text-center" class="title">Choose the department</h1>
<!--
<table class="mui-table" id="department">
<tr>
<td rowspan="2">Mech</th>
<td colspan="2">C.S.E</th>
</tr>
<tr>
<td >E.E.E</td>
<td >E.I.E</td>
</tr>
<tr>
<td >Aerospace</td>
<td >Civil</td>
<td >M.Sc</td>
</tr>
</table>
<img src="https://placehold.it/150x300">
<img src="https://placehold.it/300x150">
-->
<div id="deps">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
<img src="https://placehold.it/150x150">
</div>
</div>
</div>
</div>
<!--
<footer id="footer">
<div class="mui-container-fluid">
<br>
Made with ♥ by <a href="https://www.muicss.com">MUI</a>
</div>
</footer>
-->
</body>
</html>