-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (77 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/jpg" href="favicon.ico"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="src/style.css">
<script type="module" src="src/scripts/script.js"></script>
<script type="module" src="src/scripts/particles.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Oswald&family=Share+Tech&display=swap');
</style>
<title>Genius Game</title>
</head>
<body>
<div class="background">
<canvas class="canvas-particles" height="1125" width="1594"
style="left: 0px; top: 0px; position: absolute; height: 1125px; width: 1594px;">
</div>
<header>
<h1 id="title">Genius Game</h1>
</header>
<!--
<div class="leader__board--btn--container">
<div id="leader__board--btn">
<span class="leader__board--btn--noselect">Leaderboard</span>
<div class="leader__board--btn--circle"></div>
</div>
</div>
<div class="leader__board">
<table>
<thead>
<tr>
<th class="data__rank">Rank</th>
<th class="data__nick">Nickname</th>
<th class="data__score">Score</th>
<th class="data__date">Date</th>
</tr>
</thead>
<tbody>
<tr>
<td class="data__rank">1</td>
<td class="data__nick">Keviny Teixeira</td>
<td class="data__score">11</td>
<td class="data__date">20/01/2022</td>
</tr>
</tbody>
</table>
</div>
-->
<div class="genius__options">
<div class="gui">
<div class="group">
<div class="gui__counter">--</div>
<p class="gui__label">count</p>
</div> <!-- .group -->
<div class="group">
<div class="gui__btn gui__btn--start"></div>
<p class="gui__label">start</p>
</div> <!-- .group -->
</div> <!-- .gui -->
</div> <!-- .genius__options -->
<div class="main-game">
<div class="genius">
<div class="genius__color genius__color--blue"></div>
<div class="genius__color genius__color--yellow"></div>
<div class="genius__color genius__color--red"></div>
<div class="genius__color genius__color--green"></div>
</div> <!-- .genius -->
</div> <!-- .main-game -->
<footer>
<h2 class="footer">Powered by Keviny Teixeira for Eduzz Full Stack Developer Bootcamp!</h2>
<a class="footer" href="https://github.com/KevinyTeixeira/dio-desafio-github">Click here to access MY PROJECT on GitHub</a>
</footer>
</body>
</html>