-
Notifications
You must be signed in to change notification settings - Fork 0
/
hof.html
37 lines (37 loc) · 1.31 KB
/
hof.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Hall of Fame / Einsteinrätsel</title>
<link rel="stylesheet" href="app/css/hof.css">
<script src="app/js/GameRegistration.js"></script>
<script>
window.onload = () => {
const InstGameRegistration = new GameRegistration({});
};
</script>
</head>
<body>
<div class="header">
<div>NetCoDev :: Einsteinrätsel</div>
</div>
<div id="GameRegistration" class="container-landingpage">
<div class="landingpage-content">
<h2>Einsteinrätsel Hall of Fame</h2>
<div class="table-container">
<table>
<thead><tr><th>Name</th><th>Datum</th></tr></thead>
<tbody></tbody>
</table>
</div>
<p class="footer">
Dieses Spiel ist eine LearningByDoing-Applikation von:<br>
<a href="http://www.netcodev.de" title="http://www.netcodev.de" target="_blank">NetCoDev</a>
<br> <br>
Hier findest du den Quellcode :<br>
<a href="https://github.com/chrobaks/einstein" title="https://github.com/chrobaks/einstein" target="_blank">github.com/chrobaks/einstein</a>
</p>
</div>
</div>
</body>
</html>