-
Notifications
You must be signed in to change notification settings - Fork 0
/
productos.html
132 lines (132 loc) · 4.3 KB
/
productos.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>ComercioIT | Tu E-Shop en JavaScript</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<script src="js/jquery.min.js"></script>
</head>
<body>
<div class="header">
<div class="bottom-header">
<div class="container">
<div class="header-bottom-left">
<div class="logo"><a href="index.html">Comercio<strong>IT</strong></a></div>
<div class="clearfix"></div>
</div>
<div class="header-bottom-right">
<ul id="menu" class="login">
<li><a href="ingreso.html"><span></span> INGRESAR</a></li>
|
<li><a href="registro.html">REGISTRARME</a></li>
|
<li><a href="contacto.html">CONTACTO</a></li>
</ul>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="container">
<section id="page">
<div class="cat-product">
<div class="w_content">
<div class="category">
<ul class="w_nav">
<li>Ordernar por:</li>
<li><a class="active" href="#">Más recientes</a></li>
|
<li><a href="#">Menor precio</li>
|
<li><a href="#">Mayor precio</a></li>
<div class="clearfix"></div>
</ul>
<div class="clearfix"></div>
</div>
</div>
<div id="listadoProductos" class="grid-product">
<!-- Producto #1 -->
<div class="product-grid producto">
<div class="content_box">
<div class="left-grid-view grid-view-left">
<a href="producto.html">
<img src="images/productos/sin-foto.jpg" class="img-responsive watch-right" alt=""/>
</a>
</div>
<h4><a href="producto.html">Producto #1</a></h4>
<p>Articulo sin descripción...</p>
<span>$499</span>
</div>
</div>
<!-- Producto #2 -->
<div class="product-grid producto">
<div class="content_box">
<div class="left-grid-view grid-view-left">
<a href="producto.html">
<img src="images/productos/sin-foto.jpg" class="img-responsive watch-right" alt=""/>
</a>
</div>
<h4><a href="producto.html">Producto #2</a></h4>
<p>Articulo sin descripción...</p>
<span>$499</span>
</div>
</div>
<!-- Producto #3 -->
<div class="product-grid producto">
<div class="content_box">
<div class="left-grid-view grid-view-left">
<a href="producto.html">
<img src="images/productos/sin-foto.jpg" class="img-responsive watch-right" alt=""/>
</a>
</div>
<h4><a href="producto.html">Producto #3</a></h4>
<p>Articulo sin descripción...</p>
<span>$499</span>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</section>
</div>
<div class="footer">
<div class="footer-top">
<div class="container">
<div class="latter">
<h6>LA MEJOR MANERA DE COMPRAR ONLINE!</h6>
<div class="clearfix"></div>
</div>
<div class="latter-right">
<p>SEGUINOS</p>
<ul class="face-in-to">
<li><a href="http://www.twitter.com/educacionit"><span></span></a></li>
<li><a href="http://www.facebook.com/educacionIT"><span class="facebook-in"></span></a></li>
<div class="clearfix"></div>
</ul>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<div class="footer-bottom-cate cate-bottom">
<h6>DIRECCIÓN</h6>
<ul>
<li>Lavalle 648, 8° Piso</li>
<li>C.A.B.A.</li>
<li>Buenos Aires</li>
<li>Argentina</li>
<li class="phone">(011) 4328-0457</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</body>
</html>