-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.15 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="navBar">
<img src="img/logoWhite.png" alt="logo img"/>
<div class="options">
<div class="option" onclick="redirectToGoogle()"><span> News </span></div>
<div class="option"><span> Important notice </span></div>
<div class="option"><span> Registration/Application </span></div>
<div class="option"><span> Information Access </span></div>
<div class="option"><span> Reports </span></div>
<div class="option"><span> Regulations </span></div>
<div class="option"><span> Others </span></div>
</div>
<div class="option">
<span> Setting </span>
</div>
</section>
<section class="content">
<div class="schedule"></div>
</section>
<script>
function redirectToGoogle() {
window.location.href = "https://www.google.com";
}
</script>
</body>
</html>