-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentalista.html
62 lines (62 loc) · 2.13 KB
/
mentalista.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mentalista</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="img/alura.png" type="image/x-icon">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body style="background-color: #305">
<header>
<a href="index.html">
<span class="material-symbols-outlined"> arrow_back </span>
</a>
<div class="page-title">
<h1 class="page-title">
Segundo dia de imersão Alura
<img
src="https://www.alura.com.br/assets/img/imersoes/dev-2021/logo-imersao-aluraflix.svg"
class="page-logo"
alt=""
/>
</h1>
</div>
<a href="https://alura.com.br/" target="_blank">
<img
src="https://www.alura.com.br/assets/img/home/alura-logo.svg"
alt=""
class="alura-logo"
/>
</a>
</header>
<main
style="
background-image: url(https://caelum-online-public.s3.amazonaws.com/assets-imersaodev/Ilustra%C3%A7%C3%A3o-c%C3%A9rebro+1.png);
"
>
<div class="container">
<h1 class="page-title">Mentalista</h1>
<div class="container-content">
<input
class="input"
type="number"
id="input-random"
oninput="ConversorMoeda()"
placeholder="🔒"
disabled
/>
<button onclick="SortearNumero()" class="sortear">Sortear</button>
<span id="visor" class="visor"></span>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>