-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (42 loc) · 1.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
<!DOCTYPE html>
<html lang="pt-br">
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jogo Memória - Genius - DIO</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="container">
<div class="genius">
<div class="btn btn-top-left"></div>
<div class="btn btn-top-right"></div>
<div class="btn btn-bottom-left"></div>
<div class="btn btn-botton-right btn-active"></div>
<div class="options-center">
<header>Genius</header>
<main>
<section class="group">
<div class="op_counter op_counter-on">00</div>
<p class="op_label">count</p>
</section>
<section class="group">
<div class="op_btn op_btn-start"></div>
<p class="op_label">start</p>
</section>
<section class="group">
<div class="op_led"></div>
<div class="op_btn op_btn-strict"></div>
<p class="op_label">strict</p>
</section>
<section class="group group-large">
<p class="op_label op_label-switch">ON</p>
<div class="op_btn-switch op_btn-switch-on"></div>
<p class="op_label op_label-switch">OFF</p>
</section>
</main>
</div>
</div>
<footer>@2021 - Camila Augusta</footer>
</div>
<script src="assets/js/script.js"></script>
</body></html>