-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (58 loc) · 1.49 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
<!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>Document</title>
</head>
<body>
<div id="base-div">
<div class="miscDiv">
<div id="redPlayerScore">
<p>Red: <span>-</span></p>
</div>
<div id="bluePlayerScore">
<p>Blue: <span>-</span></p>
</div>
<div id="winAnnouncement">
<p> </p>
</div>
<button id="passButton">
Pass
</button>
</div>
<div class="cardsDiv">
<div class="cardDiv">
<div class="backgroundCard card"></div>
</div>
</div>
<table id="main-table">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<div class="textDiv">
<div id="currentPlayer">
<p class="text">Soron lévő játékos:</p>
</div>
<div>
<p class="text" id="alertText">Húzz két kártyát!</p>
</div>
</div>
</body>
<script src="script.js" type="module"></script>
</html>