-
Notifications
You must be signed in to change notification settings - Fork 0
/
time.html
44 lines (43 loc) · 2.06 KB
/
time.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
<html>
<head>
<meta charset="utf-8">
<title>YaZa Timer</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&family=Noto+Sans+KR:wght@900&display=swap');
body {
text-align: center;
}
a {
text-align: center;
font-size: 50px;
font-family: 'Noto Sans KR', sans-serif;
color: gray;
}
</style>
</head>
<body>
<br><br>
<a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">1차 자습</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">9 : 00 ~ 10 : 20</a>
<br><br>
<a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">2차 자습</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">10 : 40 ~ 12 : 00</a>
<br><br><a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">점심 시간</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">12 : 00 ~ 14 : 00</a>
<br><br><a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">3차 자습</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">14 : 00 ~ 16 : 00</a>
<br><br><a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">4차 자습</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">16 : 20 ~ 18 : 00</a>
<br><br><a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">저녁 시간</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">18 : 00 ~ 20 : 00</a>
<br><br><a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">5차 자습</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">20 : 00 ~ 21 : 00</a>
<br><br><a id="subj" style="color: rgb(150, 150, 150); font-size: 30px;">6차 자습</a>
<a style="color: rgb(244, 11, 126); font-size: 30px;">21 : 20 ~ 22 : 30</a>
<script>
setTimeout(function(){
location.reload();
},300000);
</script>
</body>
</html>