-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 2.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!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">
<meta name="description" content="Addictive game where you compare two films and guess which one made more money.">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/media.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400"/>
<title>Box Office Bombs</title>
</head>
<body>
<div class="navbar">
<a href="/about"><i class="fa fa-address-book"></i></a>
</div>
<a href="/"><img src="/images/logo.png" class="logo" alt="Box Office Bombs"></a>
<div id="homepage">
<h2 id="instructions">Guess which film made more money in the box office</h2>
<div class="wrapper">
<button id="playBtn">Play</button>
</div>
</div>
<div id="content" style="display: none;">
<section id="columns">
<div id="column1">
<p id="title1"><b>Title: </b></p>
<p id="value1"><b>Value: </b></p>
</div>
<div id="column2">
<p id="title2"><b>Title: </b></p>
<p id="value2"><b>Value: </b></p>
<button id="higher">Higher <i class="fa fa-angle-double-up"></i></button>
<button id="lower">Lower <i class="fa fa-angle-double-down"></i></button>
</div>
<div class="disc">
<p id="vs">VS</p>
</div>
</section>
<div id="highscore">High Score: 0</div>
<div id="scoreboard">Score: 0</div>
<div id="lose">
<div class="lose-content">
<h1 id="loseheader">That was embarrassing...</h1>
<h3 id="scoreboard2">You Scored: 0</h3>
<img src="images/embarrassing.gif" id="embarrassing" alt="You Lose"/>
<br>
<button id="playAgain">Play Again?</button>
</div>
</div>
</div>
<footer id="footer">
<p id="footertext">© 2021 - Andrew Secco</p>
<div class="ftlinks">
<a href="https://github.com/asecco" target="_blank"><i id="github" class="fa fa-github-square fa-3x social"></i></a>
<a href="https://www.linkedin.com/in/andrewsecco" target="_blank"><i id="linkedin" class="fa fa-linkedin-square fa-3x social"></i></a>
</div>
</footer>
<script src="/js/main.js"></script>
</body>
</html>