-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredux.html
45 lines (45 loc) · 1.06 KB
/
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Redux</title>
<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 Cancion" id="">
</form>
<div id="playlist"></div>
<!-- <div id="home-container"></div>
<div id="modal-container"></div> -->
<script src="http://localhost:9000/js/redux.js"></script>
</body>
</html>