-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<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 FORCA</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="script.js">
<link href="https://fonts.googleapis.com/css2?family=Creepster&family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="js/onload.js" defer></script>
</head>
<body class="home">
<div class="container">
<div class="ilustracao">
<h1>HangMorty</h1>
<span class="portal">
<img src="./img/potaltransp.gif" alt="">
</span>
</div>
<div class="navegacao">
<button class="bnt-nav" onclick="play()">Play</button>
<button class="bnt-nav" onclick="adicionar()">Add Palavras</button>
<button class="bnt-nav" onclick="creditos()">Creditos</button>
</div>
</div>
</body>
</html>