-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
145 lines (137 loc) · 3.77 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>TypeScript: Hello, World!</title>
</head>
<body>
<p>Move the mouse over the lines, look at the CSS part.</p>
<div class="container">
<table>
<caption>
Bokning Molekylverkstan
</caption>
<thead>
<tr>
<th scope="col">Nov-Dec</th>
<th scope="col">Måndag</th>
<th scope="col">Tisdag</th>
<th scope="col">Onsdag</th>
<th scope="col">Torsdag</th>
<th scope="col">Fredag</th>
<th scope="col">Lördag</th>
<th scope="row">Söndag</th>
</tr>
</thead>
<tbody class="table">
<tr>
<th scope="row">Vecka 47</th>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
<td>27</td>
</tr>
<tr>
<th scope="row">Vecka 48</th>
<td>28</td>
<td>29</td>
<td>30</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<th scope="row">Vecka 49</th>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
</tr>
<tr>
<th scope="row">Vecka 50</th>
<td class="cell1">
<button class="cell1-row4" type="button" onclick="showIFrame()">
12
</button>
</td>
<td class="cell2">
<button type="button" onclick="showIFrame()" class="cell2-row4">
13
</button>
</td>
<td class="cell2">
<button type="button" onclick="showIFrame()" class="cell3-row4">
14
</button>
</td>
<td class="cell3">
<button type="button" onclick="showIFrame()" class="cell4-row4">
15
</button>
</td>
<td class="cell4">
<button type="button" onclick="showIFrame()" class="cell5-row4">
16
</button>
</td>
<td class="cell5">
<button type="button" onclick="showIFrame()" class="cell6-row4">
17
</button>
</td>
<td class="cell6">
<button type="button" onclick="showIFrame()" class="cell7-row4">
18
</button>
</td>
</tr>
<tr>
<th scope="row">Vecka 51</th>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row">Dream</th>
<td colspan="2">pontus</td>
<td>tja</td>
</tr>
</tfoot>
<div class="frame-pos">
<iframe
class="iframe"
name="theFrame"
src="./bokning.html"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
width="800"
height="500"
allowfullscreen
></iframe>
</div>
</table>
</div>
<table id="testing">
<p>Hello</p>
</table>
<table id="testing-2">
<p>Hello</p>
</table>
<script src="/app.js"></script>
</body>
</html>