-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="JS Games: Guess the number and Memory game"
/>
<title>JS Games</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div class="wrapper">
<main class="page">
<section class="page__collection collection">
<div class="collection__container">
<h1 class="collection__title">JS Games</h1>
<ul class="collection__list">
<li class="collection__item">
<a href="games/guess-number/index.html" class="collection__link"
>Guess the number</a
>
</li>
<li class="collection__item">
<a href="games/memory/index.html" class="collection__link"
>Memory game</a
>
</li>
</ul>
</div>
</section>
</main>
</div>
</body>
</html>