-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (92 loc) · 3.68 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Revista</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<a href="" class="icon">Logo empresa</a>
</header>
<div class="magazine">
<div class="page">
<div class="front">
<div class="content">
<img src="img/catalogo_Page_01.jpg" class="img_responsive_height" alt="">
</div>
</div>
<div class="back">
<div class="content">
<img src="img/catalogo_Page_02.jpg" class="img_responsive_height" alt="">
</div>
</div>
</div>
<div class="page">
<div class="front">
<div class="content">
<img src="img/catalogo_Page_03.jpg" class="img_responsive_height" alt="">
</div>
</div>
<div class="back">
<div class="content">
<img src="img/catalogo_Page_04.jpg" class="img_responsive_height" alt="">
</div>
</div>
</div>
<div class="page">
<div class="front">
<div class="content">
<img src="img/catalogo_Page_05.jpg" class="img_responsive_height" alt="">
</div>
</div>
<div class="back">
<div class="content">
<img src="img/catalogo_Page_06.jpg" class="img_responsive_height" alt="">
</div>
</div>
</div>
<div class="page">
<div class="front">
<div class="content">
<img src="img/catalogo_Page_07.jpg" class="img_responsive_height" alt="">
</div>
</div>
<div class="back">
<div class="content">
<img src="img/catalogo_Page_01.jpg" class="img_responsive_height" alt="">
</div>
</div>
</div>
</div>
<div class="modal_cantidad">
<nav>
<ul>
</ul>
</nav>
</div>
<nav class="navigator">
<ul>
<li><a id="back" href="#" class="btn back">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" width="32" height="32" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"><polyline fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" points="21.4 4.5 10.7 16 21.4 26.8 "/></svg>
</a></li>
<li><a id="list" href="#" class="btn list">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" width="32" height="32" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"><line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="10" y1="7" x2="25" y2="7"/><line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="10" y1="16" x2="25" y2="16"/><line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="10" y1="25" x2="25" y2="25"/><line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="6" y1="7" x2="8" y2="7"/><line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="6" y1="16" x2="8" y2="16"/><line fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" x1="6" y1="25" x2="8" y2="25"/></svg>
</a></li>
<li><a id="next" href="#" class="btn next">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" width="32" height="32" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"><polyline fill="none" stroke="#FFFFFF" stroke-width="2" stroke-miterlimit="10" points="10.7 26.8 21.4 15.3 10.7 4.5 "/></svg>
</a></li>
</ul>
</nav>
<ul class="share_it">
<li><a href="#">F</a></li>
<li><a href="#">T</a></li>
</ul>
<footer>
<p>Desarrollado por: CLK</p>
</footer>
<script src="https://code.jquery.com/jquery-1.12.4.js" integrity="sha256-Qw82+bXyGq6MydymqBxNPYTaUXXq7c8v3CwiYwLLNXU=" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>