-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay-game.html
93 lines (82 loc) · 3.26 KB
/
play-game.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Home</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-alpha.6.min.js"></script>
<script src="script.js"></script>
<!-- Bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<!-- Top Bar -->
<nav class="navbar navbar-default static-top">
<div class="container">
<a href="index.html">
<img src="flare_logo.png" alt="Flare Logo" height=50px; class="logo"/>
</a>
<div class="col-8" style="text-align:right">
<img src="" alt="" />
</div>
<div class="col-2" id="user-align">
<p id="navbar-links">Contact Us</p>
</div>
</div>
</nav>
<!-- Navbar -->
<div class="container">
<div class="row">
<div class="topnav" id="myTopnav">
<a href="index.html" id="index">Be Ready</a>
<a href="live-alerts.html" id="live-alerts">See Live Alerts</a>
<a href="resources.html" id="resources">Resources</a>
<a href="play-game.html" id="play-game">Play the Game</a>
</div>
</div>
</div>
<!-- Make this page active -->
<script>
document.getElementById("play-game").className = "active";
</script>
<div class="py-5">
<div class="container">
<div class="row hidden-md-up">
<div class="col-md-6">
<div class="card">
<div class="card-block">
<h4 class="card-title">Game Elements</h4>
<h6 class="card-subtitle mb-2 text-muted">Things you may want to be aware of in the home. </h6>
<br>
<ul>
<li> <img src="icons/id.png" width="18px"/> ID/Important Documents</li>
<li> <img src="icons/meds.png" width="18px"/>Prescription Medication</li>
<li> <img src="icons/cash.png" width="18px"/> Cash</li>
<li> <img src="icons/phone.png" width="18px"/>Phone</li>
<li> <img src="icons/log.png" width="18px"/> Firewood</li>
<li> <img src="icons/leaf.png" width="18px"/> Yard Waste</li>
</ul>
<p>In game, you will have a 60-second countdown to collect all the important items in the maze and find an escape route. However, in the event of an emergency, always make sure that safety comes first. </p>
<a href="#" class="card-link">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-block">
<a href="#" class="card-link">Launch Game</a>
<br><br>
<img src="maze.png" width="480px"/>
</div>
</div>
</div>
</div>
<br>
</div>
</div>
</div>
</body>
</html>