-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>Is there anybody out there?</title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab|Raleway:200" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/style.css">
<style></style>
</head>
<body>
<section id="theBlack">
<div id="blackContainer">
<span>Is anybody out there?</span>
</div>
<div id="help">
<span><a href="#">?</a></span>
</div>
<div id="helpText">
<h1>Is anybody out there?</h1>
<p>An interactive art project by <a href="http://www.twitter.com/moreelen">Rosa Carbo-Mascarell</a>.</p>
<p>Click to send out a signal. Maybe someone out there is listening. Maybe they'll reply.</p>
<p>This art project was made during General Assembly's JavaScript course using firebase.</p>
</div>
</section>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/4.6.0/firebase.js"></script>
<script src="./scripts/howler.js"></script>
<script type="text/javascript" src="scripts/main.js"></script>
</body>
</html>