-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (33 loc) · 1.83 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
39
40
41
42
43
<!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>Hangman Game</title>
<link rel="shortcut icon" href="img/icon.png"/>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="css/home_page.css" media="screen">
<link rel="stylesheet" href="css/media.css" media="screen">
<link rel="stylesheet" href="css/reset.css" media="screen">
</head>
<body>
<audio autoplay loop id="playAudio" src="music/st_theme_song.mp3"></audio>
<main class="homePage" id="homePage">
<div class="content">
<img src="img/hangmanGame.png" alt="Image with the name of the page: The Stranger Hangman Game"
class="hangmanIcon animate__animated animate__bounceInDown">
<button class="startbtn" id="startbtn"><a href="game_page.html">Let's Play</a></button>
<img src="img/demohome1.png" alt="demogorgon image" class="homeImage animate__animated animate__fadeInLeft" id="homeImage">
<img src="img/demohome2.png" alt="demogorgon image" class="homeImage animate__animated animate__fadeInRight" id="homeImage2">
</div>
</main>
<footer class="footer">
<div class="copyright">
<p>©Coded by <a href="https://www.linkedin.com/in/qbrubs/">Bruna Nascimento</a></p>
</div>
</footer>
</body>
</html>