-
Notifications
You must be signed in to change notification settings - Fork 0
/
advance-level4.html
41 lines (39 loc) · 1.29 KB
/
advance-level4.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" />
<link rel="stylesheet" href="./font.css" />
<link rel="stylesheet" href="./index.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Black</title>
</head>
<body>
<div class="box">
<div class="main-content level">
<img id="logo" class="advance" src="./images/Logo.png" alt="" />
<p class="level-main-title">PARABÉNS!</p>
<p class="level-subtitle">
VOCÊ AVANÇOU PARA O <br />
NÍVEL 4
</p>
<p class="level-hero">BLACK HERO</p>
<img class="level-img" src="./images/hero-level4.svg" />
</div>
<div class="buttons-advance">
<a href="./level4.html" class="btn continue">Continuar</a>
<button class="btn-exit">
x
<div class="popover-level hidden">
<p class="title">Encerrar e recolher prêmios?</p>
<div class="buttons">
<a href="./finished-level4.html" class="btn-finish">SIM</a>
<a class="btn-continue">NÃO</a>
</div>
</div>
</button>
</div>
</div>
</body>
<script src="popover-level.js"></script>
</html>