-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·41 lines (35 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Math Game</title>
<!-- <link rel="stylesheet" href="./assets/css/normalize.css">
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/grid.css"> -->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/styleWave.css">
<link rel="stylesheet" href="./assets/css/responsivo.css">
</head>
<body>
<div class="checkLocale">
<input type="checkbox" name="" class="langBtn">
</div>
<section class="container main">
<h1>Math Game</h1>
<a href="menu.html"><button class="btn start">Start</button></a>
<a><button class="btn score">Score</button></a>
</section>
<section id="waves">
<div class="waveTop wave1"></div>
<div class="waveTop wave2"></div>
<div class="waveTop wave3"></div>
<div class="waveTop wave4"></div>
<div class="wave wave1"></div>
<div class="wave wave2"></div>
<div class="wave wave3"></div>
<div class="wave wave4"></div>
</section>
<script src="./assets/js/indexLang.js"></script>
</body>
</html>