-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
79 lines (78 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Say No More: Semaphore! is a learning game for learning flag communication. It uses the poseNet() API and ml5 to test your poses against semaphore presets."
/>
<title>Say No More: Semaphore!</title>
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/global.css" />
<link rel="stylesheet" href="styles/type.css" />
<link rel="stylesheet" href="styles/intro.css" />
<link rel="icon" href="favicon.png" type="image/x-icon" />
<script src="scripts/timer.js"></script>
<script src="scripts/sketch.js"></script>
</head>
<body class="intro__body">
<main class="intro">
<img src="images/logo.svg" alt="" class="intro__logo" />
<div class="intro__txt">
<h1 class="intro__lead">Say No More: Semaphore!</h1>
<p class="intro__paragraph">
Social distancing? Say no more! Learn to use semaphore, a long
distance language that uses body poses and hand-held flags. Start the
game, step away from your computer and try to recreate as many poses
as you can!
</p>
</div>
<a href="game.html" class="intro__btn"
><h2 class="intro__btn--txt">Start Game</h2></a
>
<p class="intro__credits">
Brought to you by
<a
rel="noopener noreferrer"
target="_blank"
href="https://amandayeh.com"
class="intro__credits--link"
>Amanda Yeh</a
>
and
<a
rel="noopener noreferrer"
target="_blank"
href="https://www.yg.is"
class="intro__credits--link"
>Yana Gevorgyan</a
>
</p>
<img src="images/arrow--intro.svg" alt="" class="intro__arrow" />
</main>
<!-- Mobile content -->
<div class="mobile">
<div class="mobile__content">
<img src="images/logo.svg" alt="" class="mobile__logo" />
<div class="mobile__card">
<h4 class="mobile__card__text">
Say No More: Semaphore!
<span class="mobile__card__text__inst"
>is best played on a computer.</span
>
</h4>
</div>
<p class="mobile__content__email">
<a
rel="noopener noreferrer"
target="_blank"
href="mailto:name@mail.com?subject=The%20subject&body=This%20is%20a%20message%20body"
class="intro__credits--link"
>Email Link To Play Later</a
>
</p>
</div>
</div>
</body>
</html>