-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Games</title>
<link rel="stylesheet" href="global-style.css" />
<link rel="icon" href="img/flaticon-main.png" />
</head>
<body>
<div class="background">
<div class="top">
<h1 class="title">Welcome to my gamecentre!</h1>
<p>
This gamecentre is a series of JavaScript games that I did to practice
and better my JS skills.
</p>
</div>
<div class="container game-menu">
<!-- Rock Paper Scissors -->
<a class="game-link" href="RockPaperScissors/rockpaperscissors.html">
<div class="game-box">
<span class="game-icon">🖐️</span
><span class="game-name">Rock Paper Scissors</span>
</div>
</a>
<!-- Wordle -->
<a class="game-link" href="Wordle/wordle.html">
<div class="game-box">
<span class="game-icon">🔤</span
><span class="game-name">NYT Wordle</span>
</div>
</a>
<!-- Memory Game-->
<a class="game-link" href="MemoryGame/memorygame.html">
<div class="game-box">
<span class="game-icon">🧠</span
><span class="game-name">Memory Game</span>
</div>
</a>
<!-- Space Invaders -->
<a class="game-link" href="SpaceInvaders/spaceinvaders.html">
<div class="game-box">
<span class="game-icon">👾</span
><span class="game-name">Space Invaders</span>
</div>
</a>
<!-- mine Sweeper -->
<a class="game-link" href="MineSweeper/minesweeper.html">
<div class="game-box">
<span class="game-icon">💣</span
><span class="game-name">Mine Sweeper</span>
</div>
</a>
<!-- mario-->
<a class="game-link" href="Mario/mario.html">
<div class="game-box">
<span class="game-icon">🍄</span
><span class="game-name">Mario</span>
</div>
</a>
</div>
</div>
</body>
</html>