-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.02 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.02 KB
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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Caveat&family=Merienda&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>¿Nene o Nena?</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/confetti-js@0.0.18/dist/index.min.js"></script>
<canvas id="confetti"></canvas>
<div class="container">
<div class="title">
<h1>¿Nene o Nena?</h1>
<div id="reveal">
<div id="first" class="card" onclick="firstBoard()"></div>
<div id="second" class="card disabled" onclick="secondGame()"></div>
<div id="third" class="card disabled" onclick="thirdGame()"></div>
<div id="last" class="card disabled" onclick="fourthGame()"></div>
</div>
</div>
<div id="game-board"></div>
</div>
<script src="game.js"></script>
</body>
</html>