-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 1.85 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
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PokimonMatcher</title>
<script src="scripts/jquery-3.2.0.min.js"></script>
<script src="scripts/gamearea.js"></script>
<script src="scripts/toplist.js"></script>
<script src="scripts/card.js"></script>
<link rel="stylesheet" href="styles/jatek.css"/>
<link rel="stylesheet" href="styles/aside.css"/>
<link rel="shortcut icon" type="image/x-icon" href="assets/logo.png"/>
</head>
<body>
<main id="main">
<div id="title-wrapper">
<img src="assets/title.png" id="title" alt="title.png"/>
</div>
<div id="game-info">
<h2 id="timer"></h2>
<div id="end-status-wrapper">
<img src="assets/victroy.png" id="victory" alt="victory.png"/>
<img src="assets/defeat.png" id="defeat" alt="defeat.png"/>
</div>
<div id="input-wrapper">
<label id="player-name"> </label>
<!--<img src="assets/input.png" id="input-kep" alt="inputkep.png"/>-->
<!--<input type="name" id="input-mezo" placeholder="your name">-->
</div>
<h2 id="matched"></h2>
</div>
<div id="gameArea">
<div id="restart">
Restart
</div>
</div>
</main>
<aside>
<div id="toplista">
<div id="toplista-title-wrapper">
<img src="assets/toplista.png" id="toplista-title" alt="toplista.png"/>
</div>
<hr>
<table id="ranglista" style="width:100%">
<tr>
<th>Rank</th>
<th>Name</th>
<th>Point</th>
</tr>
</table>
<div id="player-point" style="width: 400px">
<hr style="width: 95%" align="left">
<table id="player-point-table" style="width: 100%">
</table>
</div>
</div>
</aside>
</body>
</html>