-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MemoryGame</title>
<link rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
</head>
<body>
<h1>Memory</h1>
<div class="start-container">
<label for="Spelare 1">Spelare 1:</label>
<input class="playerone-name-field" type="text" placeholder="Skriva namn på spelare 1">
<br>
<label for="Spelare 2">Spelare 2:</label>
<input class="playertwo-name-field" type="text" placeholder="Skriva namn på spelare 2">
<button class="game-start-btn">Starta spelet</button>
</div>
<div class="memory-game">
<header>
Nu är det <label class="player-turn-lbl">namn_på_spelare</label>s tur
</header>
<div class="score-display-container">
<p>Poäng:</p>
<p class="player-one-score"></p>
<p class="player-two-score"></p>
</div>
<button class="game-restart-btn"><a href="index.html">Spela igen</a></button>
</div>
<div class="card-container">
</div>
<footer class="main-footer">
FE22 KYH Group Project 2022
<p>
Icons made by
<a href="https://www.flaticon.com/authors/freepik">Freepik</a> from
<a href="https://www.flaticon.com/">www.flaticon.com</a>.
</p>
</footer>
</body>
</html>