forked from ntijoh/24wuab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkalender.html
58 lines (49 loc) · 1.69 KB
/
kalender.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Gamla resultat för Hindås Schack" />
<title>Nyheter - Hindås Schack</title>
<link rel="shortcut icon" href="img/emblem_32.ico" type="image/x-icon" />
<!-- Styles -->
<link rel="stylesheet" href="css/globals.css" />
<link rel="stylesheet" href="css/gamla-resultat.css" />
<!-- Fonts -->
<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=Open+Sans&display=swap"
rel="stylesheet"
/>
<!-- Icons -->
<link rel="stylesheet" href="css/icons.css" />
<!-- Header -->
<script type="module" src="js/Header.js" defer></script>
<link rel="stylesheet" href="css/Header.css" />
<!-- Footer -->
<script type="module" src="js/Footer.js" defer></script>
<link rel="stylesheet" href="css/Footer.css" />
<!-- Calendar component library -->
<script
src="https://cdn.jsdelivr.net/npm/@fullcalendar/[email protected]/index.global.min.js"
defer
></script>
<script
src="https://cdn.jsdelivr.net/npm/@fullcalendar/[email protected]/index.global.min.js"
defer
></script>
<!-- Current page -->
<script type="module" src="js/kalender.js" defer></script>
</head>
<body>
<div id="root">
<c-header></c-header>
<div
id="calendar"
style="padding-inline: var(--global-padding); padding-block: 10rem"
></div>
<c-footer></c-footer>
</div>
</body>
</html>