forked from KatrinaCloyd/MemoryCardGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (69 loc) · 2.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/home.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Chonburi&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="./assets/favicon.png">
<title>start</title>
</head>
<body>
<header>
<h1>vampire match</h1>
<div class="topnav">
<a href="./">Home</a>
<a href="./results">Score Board</a>
<a href="./about-us">About Us</a>
</div>
</header>
<main>
<div class="slideshow">
<div class="images">
<img src="./assets/cards/colin-robinson.png" , width="125">
<img src="./assets/cards/fangs.png" , width="125">
<img src="./assets/cards/guillermo.png" , width="125">
<img src="./assets/cards/lapel.png" , width="125">
<img src="./assets/cards/laszlo.png" , width="125">
<img src="./assets/cards/moon.png" , width="125">
<img src="./assets/cards/nadja.png" , width="125">
<img src="./assets/cards/crucifix.png" , width="125">
<img src="./assets/cards/nandor.png" , width="125">
</div>
</div>
<section class="main-section">
<p>It's matching time! Play your basic matching memory game, but vampire style!</p>
<form>
<label>
<span>Name:</span>
<input class="name" name="name" required="true">
</label>
<br>
<span class="Difficulty Level">Choose your difficulty:</span>
<label class="checkbox">
<span class="card">12 Card</span>
<input type="radio" name="game" value="easy" required="true">
</label>
<label class="checkbox">
<span class="card">24 Card</span>
<input type="radio" name="game" value="medium">
</label>
<label class="checkbox">
<span class="card">48 Card</span>
<input type="radio" name="game" value="hard">
</label>
<button>Play</button>
</form>
</section>
</section>
</main>
<footer>
</footer>
<script type="module" src="./app.js"></script>
</body>
</html>