-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (104 loc) · 3.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Quicale</title>
</head>
<body>
<div class="root-flex-con">
<h1>Quicale<span>...Quickly generate simple calendars</span></h1>
<div class="selection" id="start-time-select">
<h2>Calendar starts at...</h2>
<div class="selection-box" id="starts-at-box">
<select name="month">
<option value="0" selected>January</option>
</select>
<select name="year">
<option value="1970" selected>1970</option>
</select>
</div>
<h2>and ends at...</h2>
<div class="selection-box" id="ends-at-box">
<select name="month">
<option value="0" selected>January</option>
</select>
<select name="year">
<option value="1970" selected>1970</option>
</select>
</div>
</div>
<input class="important-button" type="button" value="Generate"/>
<div class="calendar">
<div class="month" id="dummy" hidden>
<h3>January 1970</h3>
<table class="weeks">
<tr>
<th>Mo</th>
<th>Tu</th>
<th>We</th>
<th>Th</th>
<th>Fr</th>
<th>Sa</th>
<th>Su</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
<tr>
<td>11</td>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
<td>17</td>
</tr>
<tr>
<td>18</td>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
</tr>
<tr>
<td>25</td>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
</tr>
</table>
</div>
</div>
</div>
<div class="root-flex-overlay-con">
<div class="selection-box" id="language-box">
<select name="language">
</select>
</div>
</div>
<script src="js/lang.js"></script>
<script src="js/selection.js"></script>
<script src="js/generator.js"></script>
<script src="js/main.js"></script>
</body>
</html>