-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 2.22 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 2.22 KB
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
<!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>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Sedgwick+Ave" rel="stylesheet">
</head>
<body>
<header>
<!-- Header con los datos del usuario -->
<div class="tables">
<span><i class="fa fa-trello" aria-hidden="true"></i>Tableros</span>
</div>
<div class="tables search">
<input type="text">
<i class="fa fa-search" aria-hidden="true"></i>
</div>
<div class="trello">
<span><i class="fa fa-trello fa-3x" aria-hidden="true"></i>Trello </span>
</div>
<div class="icons-list"> <!--bloque de tres iconos y el username-->
<span><i class="fa fa-plus" aria-hidden="true"></i></span>
<span><i class="fa fa-info-circle" aria-hidden="true"></i></span>
<span><i class="fa fa-bell-o" aria-hidden="true"></i></span>
<span class="user">Mila Delgado</span>
</div>
</header>
<main>
<div class="container-list">
<!--Ingreso de la lista-->
<div>
<input class"input-list" id="input-list" type="submit" value="Añadir una lista...">
</div>
<form id="formul" class="formul " action="index.html" method="post">
<div>
<!--titulo de la lista-->
<input id="title-list" type="text" name="" value="" placeholder="Añadir una lista">
</div>
<!--botón guardar-->
<button id="save-list" type="button" name="button">Guardar lista</button>
</form>
</div>
</main>
<script src="js/app.js"></script>
</body>
</html>