-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (53 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cape Cod</title>
<link href="index.css" rel="stylesheet" type="text/css" />
<link href="loader.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="/images/fishing.png">
<script src="script.js"></script>
</head>
<body>
<!---------- Loading Screen -------- -->
<div class="LoadingScreen">
<div class="image">
<img src="/images/fish.png" width="100"></img>
</div>
<div class="loading">
<div class="loading-box">
<div class="line"></div>
</div>
</div>
</div>
<!---------- Home Page -------- -->
<div class="HomePage">
<h1 class="title">Cape Cod</h1>
<div class="cards">
<div class="tutorial-card">
<p class="card-desc">
Welcome to Cape Cod, an incremental fishing game!
Check out the tutorial to learn more:
</p>
<a href="tutorial.html">
<button class="button">Tutorial ⇨</button>
</a>
</div>
<div class="game-card">
<p class="card-desc">
Click below to proceed to the game.
Try to fish as much as you can! Have fun fishing:
</p>
<a href="game.html">
<button class="button">Game ⇨</button>
</a>
</div>
</div>
<div class="boats">
<img class="tutorial-boat" src="/images/tutorial.png"></img>
<img class="game-boat" src="/images/game.png"></img>
</div>
</div>
</body>
</html>