-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (134 loc) · 4.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/index.css" />
<title>Estudio Marea</title>
<meta name="description" content="Tienda de instrumentos online.">
<meta name="keywords" content="instrumentos, Tienda, Venta, Guitarras, Baterias, Bajos, Tencnología.">
</head>
<body>
<header class="header">
<h1>Studio Marea</h1>
<nav>
<ul class="nav__items">
<li>
<a href="" class="active">Inicio</a>
</li>
<li>
<a href="./pages/products.html">Productos</a>
</li>
<li>
<a href="./pages/services.html">Servicios</a>
</li>
<li>
<a href="./pages/about.html">Sobre nosotros</a>
</li>
<li>
<a href="./pages/login.html">
<i class="fa-solid fa-user"></i>
</a>
</li>
</ul>
</nav>
</header>
<main class="hero">
<div class="hero__info">
<h2>Estudio <span>Marea</span></h2>
<p>Observa las nuevas promocines que tenemos para ti.</p>
<i class="fa-solid fa-arrow-down"></i>
</div>
<div class="hero__img">
<img
src="https://cdn.discordapp.com/attachments/974790714846240828/1077758377972748479/logo.png"
alt="studio marea logo"
/>
</div>
</main>
<section class="hero__products">
<h3>Productos en <span>promocion.</span></h3>
<div class="products__list">
<div class="products__scale">
<img
src="https://cdn.discordapp.com/attachments/1006337021104640000/1082740691651793036/ibanezgrx40.png"
alt="Guitarra electrica"
/>
<p>Ibanez Strat</p>
<h4>$7000</h4>
</div>
<div class="products__scale">
<img
src="https://cdn.discordapp.com/attachments/974790714846240828/1077764223943311411/sgproepiphone.png"
alt="Guitarra electrica"
/>
<p>Epiphone Sg Pro</p>
<h4>$8000</h4>
</div>
<div class="products__scale">
<img
src="https://cdn.discordapp.com/attachments/1006337021104640000/1082741382172655638/taylorn2.png"
alt="Guitarra Acustica"
/>
<p>Taylor Acustic</p>
<h4>$10000</h4>
</div>
<div class="products__scale">
<img
src="https://cdn.discordapp.com/attachments/1006337021104640000/1082742326801223711/cortx100.png"
alt="Guitarra electrica"
/>
<p>Guitar Cortx 100</p>
<h4>$6000</h4>
</div>
<div class="products__scale">
<img
src="https://cdn.discordapp.com/attachments/1006337021104640000/1082742326239182958/bass4003.png"
alt="bajo"
/>
<p>Rickenbaker Bass</p>
<h4>$11000</h4>
</div>
<div class="products__scale">
<img
src="https://cdn.discordapp.com/attachments/1006337021104640000/1082742327258398740/hofnerbass.png"
alt="Bajo"
/>
<p>Hofner Violin</p>
<h4>$20000</h4>
</div>
</div>
</section>
<footer class="footer">
<div>
<img
src="https://cdn.discordapp.com/attachments/974790714846240828/1077758377972748479/logo.png"
alt="logo"
/>
</div>
<div>
<h5>Contacto</h5>
<div class="footer__contact">
<ul>
<li><a href="https://es-la.facebook.com/" target="_blank">Facebook</a></li>
<li><a href="https://www.instagram.com/" target="_blank">Instagram</a></li>
<li><a href="https://www.tiktok.com/es/" target="_blank">Tik tok</a></li>
</ul>
</div>
</div>
<div>
<h5>Avisos legales</h5>
<div class="footer__info">
<li><p>Avisos de privacidad</p></li>
<li><p>Temas Legales</p></li>
<li><p>Uso de información</p></li>
</div>
</div>
</footer>
<script
src="https://kit.fontawesome.com/70436840f7.js"
crossorigin="anonymous"
></script>
</body>
</html>