-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
89 lines (74 loc) · 3.05 KB
/
home.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
<!DOCTYPE html>
<!--
*
https://www.w3schools.com/howto/howto_make_a_website.asp
-->
<html lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="description" content="EarthLoop, web platform for networked music performance">
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1, maximum-scale=1">
<meta itemprop="description" content="Client-side EarthLoop session code samples">
<meta itemprop="image" content="imgs/visual.png">
<meta itemprop="name" content="EarthLoop session">
<meta name="mobile-web-app-capable" content="yes">
<meta id="theme-color" name="theme-color" content="#ffffff">
<meta name="keywords" content="WebRTC, WebAudio, FAUST,RTCMultiConnection,EartLoop,Networked Performance,Sound Experimentation" />
<title>EarthLoop About</title>
<meta name="description" content="EarthLoop is a collaborative platform for sound and music experimentation using real-time communication and audio processes">
<link rel="shortcut icon" href="imgs/favicon.ico" />
<link href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/main.css">
<script src="js/jquery.min.js"></script>
<script src="dist/RTCMultiConnection.min.js"></script>
<script src="https://rtcmulticonnection.herokuapp.com/socket.io/socket.io.js"></script>
<script src="https://webrtc.github.io/adapter/adapter-latest.js">
</script>
<style type="text/css">
html, body, section, ul, li, nav, a, h1, h2 {
padding: 0;
margin: 0;
outline: none;
text-shadow: none;
box-shadow: none;
border-radius: 0;
text-decoration: none;
}
body {
font-family: Arial, Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-size: 17px;
line-height: 1.5em;
}
</style>
</head>
<body>
<div class="header" style="text-align: center;">
<h1><a class="logo" href="/" style="position: right;"><img src="imgs/logo.png" alt="EarthLoop"></a>
<span>EarthLoop</span>
</h1>
<p>Connected People for Networked Music</p>
</div>
<div class="navbar">
<a>Home</a>
<a href="play.html">Play</a>
<a href="listen.html">Listen</a>
<a href="about.html" class="right">About</a>
</div>
<section id="Instruction" style="text-align:center; margin-top: 50px" class="no-mobile">
<div>
<h2>
<p class="no-mobile">
EarthLoop is a collaborative platform for sound and music experimentation
<br>using real-time communication
</p>
</h2>
</div>
<p>Go to "Play"... and open or join a new session </p>
</section >
<section>
<footer style="text-align: right; font-size: 10px; margin-top: 100px">© Laurent Di Biase - 2020</footer>
</section>
</body>
</html>