-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 858 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Calendar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/calendar.css">
<script src="js/calendar.js"></script>
<script>
document.addEventListener('calendarClicked', e => console.log(e.detail));
</script>
</head>
<body>
<div class="container">
<calendar month="1" day="25" year="1971"></calendar>
<calendar></calendar>
<calendar year="2018"></calendar>
</div>
</body>
</html>