-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (155 loc) · 5.97 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!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>CPC ENGINE V1</title>
<!-- Estilos -->
<link rel="stylesheet" href="style.css" />
<!-- Bootsratp CDN -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Estilos -->
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
</head>
<body>
<!-- Header dinamico -->
<div class="wrapper">
<header>
<nav>
<div class="menu-icon">
<i class="fa fa-bars fa-2x"></i>
</div>
<div class="logo">
<img src="assets/sealL.png" alt="" />
<a href="#"><img src="assets/cpc.png" alt="" /></a>
</div>
<div class="menu">
<ul>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/sealboxColores.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/teclado.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/pc-de-la-torre.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/iphone.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/sell.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/detection.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/commerce-and-shopping.png" alt=""
/></a>
</li>
<li>
<a href="https://sealsolutionsandhardware.000webhostapp.com/"
><img src="assets/cyberpunk.png" alt=""
/></a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Banner con botones y boton de buscar-->
<div class="banner">
<div class="container">
<div class="banner-content">
<span><img src="assets/cpc@2x.png" alt="" /></span><br />
<span>PC'S/LAPTOPS</span>
<h1>
Computadoras reacondicionadas? Ja, la unica diferencia de una
nueva es el precio!
</h1>
<a class="btn-one" href="#">VENDER</a>
<a class="btn-two" href="#">COMPRAR</a>
<input type="text" class="input" placeholder="Buscar..." />
</div>
</div>
</div>
<div class="content">
<p><h1>
COMPUTADORAS REACONDICIONADAS
</h1>
</p>
</div>
<!-- store items -->
<section class="carousel">
<div class="carousel__container">
<div class="carousel-item">
<img
class="carousel-item__img"
src="assets/PC.png"
alt=""
/>
<div class="carousel-item__details">
<p class="carousel-item__details--title">PC GAMER I7, GTX 1080
</p>
<p class="carousel-item__details--subtitle">
$18,000 MXN
</p>
<div>
<img class="carousel-item__details--img-1" src="assets/baay.png" alt="">
<img class="carousel-item__details--img" src="assets/chop.png" alt="">
</div>
</div>
</div>
<div class="carousel-item">
<img
class="carousel-item__img"
src="assets/e2bb71149cdfdaf5633c60ecdc850333.png"
alt=""
/>
<div class="carousel-item__details">
<p class="carousel-item__details--title">PC GAMER RYZEN 7, GTX 1080
</p>
<p class="carousel-item__details--subtitle">
$17,000 MXN
</p>
<div>
<img class="carousel-item__details--img-1" src="assets/baay.png" alt="">
<img class="carousel-item__details--img" src="assets/chop.png" alt="">
</div>
</div>
</div>
</div>
<script type="text/javascript">
// BOTON DE NAVEGACION
$(document).ready(function () {
$(".menu-icon").on("click", function () {
$("nav ul").toggleClass("showing");
});
});
// EFECTO DE SCROLL
$(window).on("scroll", function () {
if ($(window).scrollTop()) {
$("nav").addClass("black");
} else {
$("nav").removeClass("black");
}
});
</script>
</body>
</html>