-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom.html
55 lines (38 loc) · 1.29 KB
/
room.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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>the thoughts room</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="styles.css"/>
<meta name="viewport" content="width=device-width, user-scalable=no"/>
<meta name="description" content="Free yourself from negative thoughts"/>
</head>
<div class="cinemagraph">
<div class="content">
<h1>One Thought At A Time</h1>
<p> a reprisal of The Quiet Place Project's "Thoughts Room" </p>
<body>
<div class="container">
<label for="input"></label>
share something.
<div id="wrapper">
<input id="input" autofocus/>
<div id="tailHolder">
</div>
</div>
<div class="instructions">
<i>to finish your thought, press the [period] key.</i> <br>
</div>
</div>
<footer>
<i> press play for music.</i><br><br>
<audio name="audio" controls autoplay loop preload="auto">
<source src="media/art-of-silence.ogg" type="audio/ogg">
<source src="media/art-of-silence.mp3" type="audio/mpeg">
</audio> <br> <br>
</footer>
</body>
</div>
</div>
<script src="scripts.js"></script>
</html>