-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (91 loc) · 3.51 KB
/
index.html
File metadata and controls
95 lines (91 loc) · 3.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calendar</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.table td, .table th {
padding: .25rem !important;
}
.padding{
padding: .25rem !important;
font-size: small !important;
}
</style>
</head>
<body>
<div class="container col-md-12">
<div class="card">
<span class="card-header">
</span>
<table class="table-bordered table-striped table-responsive-xl" id="calendar">
<thead style="background-color: #003070">
<tr style="border: none!important;">
<td colspan="32">
<div style="float: right;margin-right: 2%;color: antiquewhite;font-size: small">
<input type="checkbox" checked><span> Pzt</span>
<input type="checkbox" checked><span> Sal</span>
<input type="checkbox" checked><span> Çar</span>
<input type="checkbox" checked><span> Per</span>
<input type="checkbox" checked><span> Cum</span>
<input type="checkbox" checked><span> Cmt</span>
<input type="checkbox" checked><span> Paz</span>
</div>
</td>
</tr>
<tr style="margin-top: 5px;color: black;font-size: small;background-color: #f3f2f7" align="center">
<th><i class="fa fa-calendar" aria-hidden="true"></i></th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
<th>7</th>
<th>8</th>
<th>9</th>
<th>10</th>
<th>11</th>
<th>12</th>
<th>13</th>
<th>14</th>
<th>15</th>
<th>16</th>
<th>17</th>
<th>18</th>
<th>19</th>
<th>20</th>
<th>21</th>
<th>22</th>
<th>23</th>
<th>24</th>
<th>25</th>
<th>26</th>
<th>27</th>
<th>28</th>
<th>29</th>
<th>30</th>
<th>31</th>
</tr>
</thead>
<tbody id="calendar-body" style="font-size: small;font-style: italic" align="center">
</tbody>
</table>
<br/>
</div>
</div>
<script src="scripts.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"
integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"
integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm"
crossorigin="anonymous"></script>
</body>
</html>