-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 820 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Jass Differenzler Kartenzähler</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="trump" class="top-info"></div>
<div id="estimate" style="display:none" class="top-info">
<table>
<tr>
<th scope="col">Ansage</th>
<th scope="col">Punkte</th>
<th scope="col">Differenz</th>
</tr>
<tr>
<td id="estimate-guess">0</td>
<td id="estimate-points">0</td>
<td id="estimate-diff">0</td>
</tr>
</table>
</div>
<h1>Differenzler Kartenzähler</h1>
<div id="game"></div>
<script src="cards.js"></script>
<script src="index.js"></script>
</body>
</html>