-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (82 loc) · 3.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page Information
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<title>SoundTap</title>
<meta name="description" content="audio-tagger">
<meta name="author" content="Xavier Duncan">
<link rel="shortcut icon" type="image/png" href="./assets/favicon.ico"/>
<!-- Stylesheets
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<!-- Icons (Font Awesome)
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://use.fontawesome.com/67dcdad004.js"></script>
<!-- Favicon
––––––––––––––––––––––––––––––––––––––––––––––––––
<link rel="icon" type="images/ico" href="images/favicon.ico"> -->
</head>
<body class="w3-container w3-animate-opacity" style="overflow-x: hidden;">
<div class="w3-content w3-large">
<p><b>soundtap</b>.me</p>
<br />
<!-- File Upload & Edit -->
<p>
1. Create, edit, and share your taps.
</p>
<br />
<input type="file" id="input" />
<br /><br />
<audio id="sound" style="width:100%;" controls></audio>
<br />
<!-- Audio Tagging -->
<br />
<p>
2. Tag taps w/ reactions, video, and audio clips.
</p>
<br />
<audio class="audio" style="width:100%;" controls>
<source src="./assets/coltrane.mp3" type="audio/mp3">
Your browser does not support HTML5 audio.
</audio>
<br />
<br />
<form>
<input id="name" class="w3-input name" type="text" placeholder="Name" required>
<input id="comment" class="w3-input comment" type="text" placeholder="Enter comment..." required></input>
<br />
<button
class="w3-btn w3-green"
style="border-radius: 5%; padding: 5px 35px;"
onclick="bindData(), this.form.reset()">
<span>
Post
</span>
</button>
<input type="submit" style="display:none;" />
</form>
<div>
<ul id="comments" class="comments"></ul>
</div>
</div>
<br />
<div class="w3-content w3-large">
<br />
<a href="https://xavier.fun" target="_blank"><i class="fa fa-globe" style="padding: 0 20px 0 0;"></i></a>
<a href="https://twitter.com/xmd404" target="_blank"><i class="fa fa-twitter" style="padding: 0 20px 0 0;"></i></a>
<a href="https://github.com/xmd404" target="_blank"><i class="fa fa-github" style="padding: 0 20px 0 0;"></i></a>
<br/><br/>
</div>
<!-- JavaScript
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="index.js"></script>
</body>
</html>