-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 906 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 906 Bytes
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RCJ Berlin 2020 - Ergebnisse</title>
<link rel="stylesheet" href="./style.css">
<script src="main.js" type="text/javascript" defer></script>
</head>
<body>
<div id="progressbar"></div>
<div id="tabbar">
<button id="template-tab" type="button" class="template tabbar-item"></button>
</div>
<div id="box-wrapper">
<div id="template-box" class="template box">
<h2 id="heading" class="heading"></h2>
<p id="last-update" class="last-update">-</p>
<div style="overflow-x:auto;">
<table id="table"></table>
</div>
</div>
</div>
</body>
</html>