-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminy.html
51 lines (50 loc) · 1.02 KB
/
terminy.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Koło Fizyczne</title>
<link rel="stylesheet" href="style.css">
<script src="aktualizacja.js"></script>
</head>
<body>
<header>
</header>
<aside>
<span>strona internetowa koła fizycznego</span>
</aside>
<nav>
<ul>
<li><a href="index.html">Strona główna</a></li>
<li><a href="terminy.html">Terminy spotkań</a></li>
</ul>
</nav>
<main>
<table border="1">
<tr>
<th>Rok szkolny</th>
<th>Miesiąc</th>
<th>Dzień</th>
<th>Godzina</th>
<th>Sala</th>
</tr>
<tr>
<td rowspan="2">2020 - 2021</td>
<td>wrzesień - styczeń</td>
<td>poniedziałek</td>
<td>8:00</td>
<td rowspan="2">212</td>
</tr>
<tr>
<td>luty - czerwiec</td>
<td>środa</td>
<td>14:20</td>
</tr>
</table>
</main>
<footer>
ostatnia aktualizacja: <script>czas()</script>
</footer>
</body>
</html>