-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (99 loc) · 3.57 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Invie - ¡Las mejores guitarras!</title>
<link href="https://fonts.googleapis.com/css?family=Allerta|Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<section id="portada" class="portada background"> <!-- Portada -->
<header id="header" class="header contenedor"> <!-- header -->
<figure class="logotipo"> <!-- logotipo -->
<img src="images/invie.png" alt="Logo">
</figure>
<nav class="menu"> <!-- menu -->
<ul>
<li><a href="index.html"> Home</a></li>
<li><a href="#guitarras"> Guitarras</a></li>
<li><a href="precios.html"> Precios</a></li>
</ul>
</nav>
</header>
<div class="contenedor">
<h1 class="titulo">Guitarras <span>invie</span>sibles</h1><!-- titulo -->
<h3 class="slogan">Sé estrella de rock que siempre quisite ser</h3><!-- slogan -->
<a class="boton" href="#guitarras">Conoce más</a><!-- boton -->
</div>
</section>
<section id="guitarras" class="guitarras contenedor"> <!-- Guitarras -->
<h2>Nuestras guitarras</h2><!-- titulo -->
<article class="guitarra"><!-- guitarra 1 -->
<img src="images/invie-acustica.png" class="right" alt="Invie Acustica" width="350">
<div class="contenedor-guitarra-a">
<h3 class="titulo-g">Invie Acustica</h3>
<ol>
<li>Modelo vintage</li>
<li>Madera pura</li>
<li>Incluye un estuche invisible de aluminio</li>
</ol>
</div>
</article>
<article class="guitarra b"><!-- guitarra 2 -->
<img src="images/invie-classic.png" class="left" alt="Invie Classic" width="350">
<div class="contenedor-guitarra-b">
<h3 class="titulo-g">Invie Classic</h3>
<ol>
<li>Modelo vintage</li>
<li>Liviana</li>
<li>Inicia tu camino como rockstar</li>
</ol>
</div>
</article>
</section>
<footer class="footer">
<div class="contenedor">
<div class="contacto">
<img src="images/invie-white.png" alt="Logo Invie">
<a href="tel:"><strong>Telefono</strong> <span>+58 414-543-9534</span></a>
<a href="mailto:contacto@invie.com"><strong>E-mail</strong> <span>contacto@invie.com</span></a>
</div>
<form class="formulario">
<div class="col1">
<label for="nombre">Nombre</label>
<input type="text" id="nombre" required name="nombre" />
<label for="email">E-mail</label>
<input type="email" id="email" required name="email" />
<div class="sexo">
<label for="mujer">
<input type="radio" id="mujer" name="sexo" value="mujer"> Mujer
</label>
<label for="hombre">
<input type="radio" id="hombre" name="sexo" value="hombre"> Hombre
</label>
</div>
<div class="intereses">
<label for="cotizacion">
<input type="checkbox" id="cotizacion" name="intereses" value="cotizacion"> Cotizacion
</label>
<label for="reclamos">
<input type="checkbox" id="reclamos" name="intereses" value="reclamos"> Reclamos
</label>
<label for="comentarios">
<input type="checkbox" id="comentarios" name="intereses" value="comentarios"> Comentarios
</label>
<label for="otros">
<input type="checkbox" id="otros" name="intereses" value="otros"> Otros
</label>
</div>
</div>
<div class="col2">
<label for="asunto">Asunto</label>
<textarea name="asunto" id="asunto" cols="30" rows="7"></textarea>
<input type="submit" value="Enviar" class="boton" />
</div>
</form>
</div>
</footer>
</body>
</html>