-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.13 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
<!DOCTYPE html>
<head>
<title>カレンダー</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header id="header">
<div>カレンダー</div>
</header>
<main id="main">
<div id="cheader">
<div id="cheadwrap">
<div id="btnarea1"></div>
<div id="ctitle"></div>
<div id="btnarea2"></div>
</div>
</div>
<div id="daysarea" class="week"></div>
<div id="week1" class="week"></div>
<div id="week2" class="week"></div>
<div id="week3" class="week"></div>
<div id="week4" class="week"></div>
<div id="week5" class="week"></div>
<div id="week6" class="week"></div>
</main>
<footer id="footer">
<div>
祝日の表示には
<a href="https://national-holidays.jp/">
「国民の祝日:日本」https://national-holidays.jp/
</a>
を利用しています。
</div>
</footer>
<!-- script -->
<script src="calender.js"></script>
<script src="main.js"></script>
</body>
</html>