-
Notifications
You must be signed in to change notification settings - Fork 0
/
redux.html
45 lines (45 loc) · 1019 Bytes
/
redux.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Redux</title>
<!-- <link rel="stylesheet" href="dist/css/home.7646f097e8e64cbf8f09.css"> -->
<style>
body {
margin: 0;
background: lightgray;
font-family: Arial;
padding-top: 55px;
}
form {
padding: 10px;
position: fixed;
top: 0;
box-sizing: border-box;
width: 100%;
}
input {
width: 100%;
padding: 10px;
font-size: 18px;
box-sizing: border-box;
}
p {
margin: 10px;
background: black;
color: white;
padding: 5px;
}
</style>
</head>
<body>
<form id="form">
<input type="text" name="title" placeholder="Nombre de la canción"/>
</form>
<div id="playlist"></div>
<!-- <div id="home-container"></div> -->
<!-- <div id="modal-container"></div> -->
<script src="http://localhost:9000/js/redux.js"></script>
<!-- <script src="dist/js/home.7646f097e8e64cbf8f09.js"></script> -->
</body>
</html>