-
Notifications
You must be signed in to change notification settings - Fork 0
/
game-over.html
37 lines (32 loc) · 1.08 KB
/
game-over.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
<!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">
<link rel="shortcut icon" type="imagex/png" href="./images/arcade-snes-icon.ico">
<link rel="stylesheet" href="./index.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');
</style>
<title>GAME OVER</title>
</head>
<body>
<header>
<h1>Sunset Riders: Stories</h1>
</header>
<main>
<div class="div-poster-home">
<img class="poster-home" src="./images/game-over.png">
</div>
<div id="div-play-button">
<input class="play-button" type="submit" value="PLAY" onclick="goHome()">
</div>
</main>
<footer class="characters-footer">
<span>Desenvolvido por <a href="https://www.linkedin.com/in/danbaziewicz/">Danylo Baziewicz</a> - Para fins
estritamente didáticos.</span>
</footer>
<script src="./game.js"></script>
</body>
</html>