This repository has been archived by the owner on Jan 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
99 lines (88 loc) · 4.45 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
<!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">
<title>FishFight!</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<!-- Primary Meta Tags -->
<title>FishFight Game</title>
<meta name="title" content="FishFight Game">
<meta name="description" content="Open source 2D platformer game, community-made!">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://fishfight.org/">
<meta property="og:title" content="FishFight Game">
<meta property="og:description" content="Open source 2D platformer game, community-made!">
<meta property="og:image" content="https://fishfight.org/assets/social.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://fishfight.org/">
<meta property="twitter:title" content="FishFight Game">
<meta property="twitter:description" content="Open source 2D platformer game, community-made!">
<meta property="twitter:image" content="https://fishfight.org/assets/social.jpg">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
<link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#7ea8a6">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="content">
<div class="flex row jcbtw fishbox">
<div class="whale blue">
<img src="assets/Whale/sword.png" height="48" alt="sword" class="item">
</div>
<div class="whale red flip">
<img src="assets/Whale/gun.png" height="48" alt="gun" style="animation-delay: 0.45s;" class="item">
</div>
</div>
<div class="flex col">
<img height="240" src="assets/logo.svg" alt="FishFight" style="padding: 0em 1em; z-index: 2;">
<h1 id="quote" class="quote">Fishy!</h1>
</div>
<div class="flex jcbtw">
<iframe width="560" height="315" class="idvideo" src="https://www.youtube-nocookie.com/embed/f7Yo1AwQAEE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> </div>
<div class="content_box">
<h2 class="big">Come talk to us!</h2>
<div class="flex row jcbtw" style="flex-wrap: wrap;">
<a href="https://github.com/fishfight/FishFight">
<div class="content_button">
<p>Github</h1>
</div>
</a>
<a href="https://discord.gg/4smxjcheE5">
<div class="content_button">
<p>Discord</h1>
</div>
</a>
<a href="https://twitter.com/fishfightgame">
<div class="content_button">
<p>Twitter</h1>
</div>
</a>
</div>
</div>
<div class="flex col" style="padding:1em; text-align: center;">
<h2>Sponsors</h2>
<div class="flex row" style="padding:1em;flex-wrap: wrap;">
<a class="contain" href="https://amethyst.rs/">
<img src="assets/amethyst_foundation.svg" alt="Amethyst" height="64">
</a>
<a class="contain" href="https://heroiclabs.com/">
<img src="assets/heroic.svg" alt="Heroic Labs" height="64">
</a>
</div>
</div>
</div>
<img id="fg3" class="bg" src="assets/Background/03.png" alt="background1" srcset="">
<img id="fg2" class="bg" src="assets/Background/02.png" alt="background1" srcset="">
<img id="fg1" class="bg" src="assets/Background/01.png" alt="background1" srcset="">
<canvas id="particlebox"></canvas>
<script type="text/javascript" src="index.js"></script>
</body>
</html>