-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
104 lines (96 loc) · 4.05 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A Lockdown Story</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-md navbar-light bg-light sticky-top">
<div class="container-fluid">
<a class="navbar-brand" href="img/bgNPC.png"><img src="img/logo.png"> </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#"> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="game.html"> Game</a>
</li>
<li class="nav-item">
<a class="nav-link" href="information.html"> Information</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html"> About Us</a>
</li>
</ul>
</div>
</div>
</nav>
<h1 class="display-4">A Lockdown Story...</h1>
<!--- Image Slider -->
<div id="slides" class="carousel slide" data-ride="carousel">
<ul class="carousel-indicators">
<li data-target="#slides" data-slide-to="0" class="active"></li>
<li data-target="#slides" data-slide-to="1"></li>
<li data-target="#slides" data-slide-to="2"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="inner-item">
<img src="img/index_pic1.PNG">
</div>
</div>
<div class="carousel-item">
<div class="inner-item">
<img src="img/index_pic2.PNG">
</div>
</div>
<div class="carousel-item">
<div class="inner-item">
<img src="img/index_pic3.PNG">
</div>
</div>
</div>
</div>
<!--- Jumbotron -->
<div class="container-fluid">
<div class="row jumbotron">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9 col-xl-10">
<p class="lead"> Take a look at our behind-the-scenes process <a href="bts.html">here!</a></p>
</div>
</div>
</div>
<!--- Welcome Section -->
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-12">
<h1 class="display-4">About the Game</h1>
</div>
<hr>
<div class="col-12">
<p class="lead">The three categories of the Hunter 2021 Codefest are Productivity, Social Good, and Education! So we wanted to make something fun, interactive, and educational. </p>
<p class="lead">Our project consists of this website and a game. While we were brainstorming, we realized that the amount of information we can display in the game is limited. So we also made a website to supplement the information in the game by providing more details about Covid-19 and infectious diseases.</p>
<p class="lead">This game takes place during the beginning of the pandemic, and you play as a journalist working at home. Throughout the game, you must balance various factors like physical and mental health. This game has eight days, and the player will have to take a mini quiz about the topics in 8 different articles. After the eight days, the player will see a progress report of how well they managed health and money.</p>
</div>
</div>
</div>
<!--- Footer -->
<footer id="sticky-footer" >
<div class="container text-center">
<p>Hunter College CodeFest</p>
<p> 2021</p>
<a href="https://github.com/huntercodefest/winter-2021-codefest-submissions-certified-couch-potatoes">Visit our Github!</a>
</div>
</footer>
</body>
</html>