-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjogo2.html
More file actions
36 lines (25 loc) · 1.14 KB
/
jogo2.html
File metadata and controls
36 lines (25 loc) · 1.14 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jogo da adivinhação</title>
<script src="./jogo2.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="jogo.css">
</head>
<body>
<header>
<h1>Jogo da adivinhação</h1>
<img src="./question.png"></img>
</header>
<div>
<button id="iniciar" type="button" class="btn btn-primary" onclick="iniciarJogo()" > Clique aqui para jogar</button>
<h2 id="msg"></h2>
</div>
<footer>
<div><p>Desenvolvido por Igor Ofrante Dutra</p> Icons made by <a href="https://www.flaticon.com/authors/konkapp" title="Konkapp">Konkapp</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
</footer>
</body>
</html>