forked from codepath/web102_prework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (87 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- header row with logo -->
<div id="page-container">
<nav>
<img id="tentacles" src="assets/tentacles.png" />
<h1 class="header-text">Sea Monster Crowdfunding</h1>
<!-- <img class="nav-icon" src="assets/navbar_black.png" /> -->
<ul>
<a href="#home">
<li>Home</li>
</a>
<a href="#stats">
<li>Stats</li>
</a>
<a href="#games">
<li>Games</li>
</a>
</ul>
</nav>
<!-- background info about company -->
<a id="home">
<section class="home_section">
<h2>Welcome to Sea Monster!</h2>
<div id="description-container">
<p>
The purpose of our company is to fund independent games. We've
been in operation for 12 years.
</p>
</div>
<a href="#stats"
><img id="down-arrow" src="assets/down-arrow.png"
/></a>
</section>
</a>
<!-- top games & other interesting stats -->
<a id="stats">
<section class="stats_section">
<h2>Stats</h2>
<div class="stats-container">
<div class="stats-card">
<h3>Individual Contributions</h3>
<p id="num-contributions"></p>
</div>
<div class="stats-card">
<h3>Total Raised</h3>
<p id="total-raised"></p>
</div>
<div class="stats-card">
<h3>Total Number of Games</h3>
<p id="num-games"></p>
</div>
</div>
<div class="stats-container" id="top-games">
<div class="stats-card" id="first-game">
<h3>🥇 Top Funded Game</h3>
</div>
<div class="stats-card" id="second-game">
<h3>🥈 Runner Up</h3>
</div>
</div>
</section>
</a>
<!-- list of games funded by Sea Monster -->
<a id="games">
<section class="games_section">
<h2>Our Games</h2>
<p>Check out each of our games below!</p>
<div id="button-container">
<button id="unfunded-btn">Show Unfunded Only</button>
<button id="funded-btn">Show Funded Only</button>
<button id="all-btn">Show All Games</button>
</div>
<div id="games-container"></div>
</section>
</a>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.map"></script>
<script type="module" src="index.js"></script>
</body>
</html>