-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.22 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width" , initial-scale="1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Jua&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.rtl.min.css"
integrity="sha384-7mQhpDl5nRA5nY9lr8F1st2NbIly/8WqhjTp+0oFxEA/QUuvlbF6M1KXezGBh3Nb"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/style.css" />
<script
src="https://kit.fontawesome.com/d15e16ea14.js"
crossorigin="anonymous"
></script>
<title>2024 카운트다운</title>
</head>
<body onload="setTimer()">
<div id="background">
<div id="blur"></div>
</div>
<div id="center">
<h3 id="title">2024년 Count Down</h3>
<h1 id="timer">0일 0시간 0분 0초</h1>
</div>
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>