-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - #7DaysOfCode - loops e randomização</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<html>
<head>
<title>loops e Randomização</title>
</head>
<body>
<div class="container">
<h1 class="page-title">Jogo do Adivinha</h1>
<img src="https://picnicdepalavras.com.br/wp-content/uploads/2021/06/Adivinhas-O-que-e-o-que-e.png" class="page-logo" alt=""><br>
<p class="page-subtitle">Qual número estou pensando entre 0 a 10? </p>
<input type="number" id="valor" placeholder="Digite Aqui"><br><br>
<button class="button" type="submit" onclick="Adivinhe()">Adivinhe</button>
<h2 class="resultado" id="resultado"></h2>
<div id="button"></div>
</div>
<a href="https://github.com/SergioRibeiro7820" target="_blank">
<img src="https://f4.bcbits.com/img/0022465021_20.jpg" alt="" class="git-sergio"></a>
<script src="app.js"></script>
</body>
</html>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>