-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdashboard.html
95 lines (79 loc) · 3.04 KB
/
dashboard.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
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.css">
<style type="text/css">
body{
padding-top: 60px;
padding-bottom: 60px;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a href="#" class="brand">Bootstrap</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="">Inicio</a></li>
<li><a href="">Acerca</a></li>
<li><a href="">Contacto</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> Dropmenu <b class="caret"></b> </a>
<ul class="dropdown-menu">
<li><a href="#">Accion 1</a></li>
<li><a href="#">Accion 2</a></li>
</ul>
</li>
</ul>
<form action="" class="navbar-form pull-right">
<input type="text" class="span2" placeholder="Nombre" required>
<input type="text" class="span2" placeholder="Pass">
<button class="btn btn-primary">Logear <i class="icon-trash"></i> </button>
</form>
</div>
</div>
</div>
</div>
<div class="container">
<div class="hero-unit">
<h1>Taller de Bootstrap</h1>
<p>Built at Twitter by @mdo and @fat, Bootstrap utilizes LESS CSS, is compiled via Node, and is managed through GitHub to help nerds do awesome stuff on the web.Built at Twitter by @mdo and @fat, Bootstrap utilizes LESS CSS, is compiled via Node, and is managed through GitHub to help nerds do awesome stuff on the web.</p>
<p> <a href="#" class="btn btn-primary">Llamar accion</a> </p>
</div>
<div class="row">
<div class="span4">
<h2>Cabezera</h2>
<p>Built at Twitter by @mdo and @fat, Bootstrap utilizes LESS CSS, is compiled via Node, and is managed through GitHub to help nerds do awesome stuff on the web.</p>
<p> <a href="" class="btn"> Leer Mas »</a> </p>
</div>
<div class="span4">
<h2>Cabezera</h2>
<p>Built at Twitter by @mdo and @fat, Bootstrap utilizes LESS CSS, is compiled via Node, and is managed through GitHub to help nerds do awesome stuff on the web.</p>
<p> <a href="" class="btn"> Leer Mas »</a> </p>
</div>
<div class="span4">
<h2>Cabezera</h2>
<p>Built at Twitter by @mdo and @fat, Bootstrap utilizes LESS CSS, is compiled via Node, and is managed through GitHub to help nerds do awesome stuff on the web.</p>
<p> <a href="" class="btn"> Leer Mas »</a> </p>
</div>
</div>
<hr>
<footer>
<p> © Copyright 2012</p>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>