-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·43 lines (38 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MyTemplate - html5_d3js</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="screen" />
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/whycalendar.js"></script>
<style>
.month{
clear:both;
display:inline-block;
margin:10px;
}
.day{
/* display:inline-block;*/
float:left;
width:20px;
height:20px;
margin-left: 3px;
}
div.week-Sun{
clear:both;
/* display:block;*/
}
div.week-Mon{
/* clear:left;*/
}
</style>
</head>
<body>
<input type="button" value="2012" id="y2012">
<input type="button" value="2013" id="y2013">
<div class="wrapper"></div>
</body>
</html>