-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (56 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Worldwide Holidays</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/select.js" defer></script>
<script src="js/calendar.js" defer></script>
<script src="js/holiday.js" defer></script>
<script src="js/app.js" defer></script>
<script src="js/modal.js" defer></script>
<script src="js/script.js" defer></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<![endif]-->
<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=Bakbak+One&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1>Worldwide Holidays</h1>
<section>
<label for="countries">Country:</label>
<select id="countries"></select>
</section>
<section class="calendar_container">
<header>
<button id="previous-month" class="btn_round"><</button>
<h2 id="calendar-title">Month 2021</h2>
<button id="next-month" class="btn_round">></button>
</header>
<table>
<tr>
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
<tbody id="calendar"></tbody>
</table>
</section>
<section id="modal-view" class="hidden">
<div>
<button class="btn_round">×</button>
<div class="content-container"></div>
</div>
</section>
</body>
</html>