This repository has been archived by the owner on Aug 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (57 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<link rel='stylesheet' href='assets/style.css'/>
<link rel="stylesheet" href="assets/caroussel/owl.carousel.min.css">
<link rel="stylesheet" href="assets/caroussel/owl.theme.default.min.css">
<title>Music'all</title>
</head>
<body>
<div id="titre">
<div class="margin">
<img src="assets/images/Logo_main.png"/>
</div>
</div>
<audio controls="">
<source src="http://localhost:25567/stream?type=.mp3">
Your browser does not support the audio element.
</audio>
<section id="main">
<article id="playlist">
<div draggable="false" class="float_left">
<img id="fleche_gauche" src="assets/images/fleche_gauche.png"/>
</div>
<div class="float_right">
<img draggable="false" id="fleche_droite" src="assets/images/fleche_droite.png"/>
</div>
<div class="margin">
<div class="owl-carousel owl-theme">
</div>
</div>
<!--
<div class="vignette">
<img src="IMG_DATA" alt="IMG_TITRE"/>
</div>
-->
</article>
<div class="margin">
<article id="contenu">
<article id="chat">
</article>
<article id="upload">
<div id="dropfile">Glissez une musique pour l'envoyer</div>
<form method="post" action="../upload" enctype="multipart/form-data">
<input type="file" name="musique" />
<input type="submit" value="Envoyer">
</form>
</article>
</article>
</div>
</section>
<script src="https://code.jquery.com/jquery-1.10.0.min.js"></script>
<script src="assets/caroussel/owl.carousel.min.js"></script>
<script src='assets/index.js'></script>
</body>
</html>