-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiaJS.html
76 lines (72 loc) · 1.78 KB
/
diaJS.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dia Javascript - HTML/CSS</title>
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,300italic|Roboto:400,100,300,300italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/iconos/style.css">
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/dia1js.css">
</head>
<body>
<section id="main" class="container">
<div class="row">
<nav class="span4">
<ul class="menu menu-completo menu-vertical">
<li>
<a id="open-home" href="#">
Home
<span class="icon-home icono"></span>
</a>
</li>
<li>
<a href="#">
Productos
<span class="icon-books icono"></span>
</a>
</li>
<li>
<a href="#">
Servicios
<span class="icon-disk icono"></span>
</a>
</li>
<li>
<a href="#">
Nosotros
<span class="icon-users icono"></span>
</a>
</li>
<li>
<a href="#">
Contacto
<span class="icon-support icono"></span>
</a>
</li>
</ul>
</nav>
<div class="span8">
<!-- h1.tabs-mias#home -->
<h1 class="tabs-mias active" id="home">
Esto es el Tabs de Home
</h1>
<h1 class="tabs-mias" id="productos">
Esto es el tab de Productos
</h1>
<h1 class="tabs-mias" id="servicios">
Esto es el Tab de Servicios
</h1>
<h1 class="tabs-mias" id="nosotros">
Esto es el Tab de Nosotros
</h1>
<h1 class="tabs-mias" id="contacto">
Esto es el Tab de Contacto
</h1>
</div>
</div>
</section>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="js/dia1js.js"></script>
</body>
</html>