-
Notifications
You must be signed in to change notification settings - Fork 65
/
index-6.html
54 lines (54 loc) · 1.62 KB
/
index-6.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
<!DOCTYPE html>
<html>
<head>
<title>Invie - tus mejores guitarras!!</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/invie.css"/>
</head>
<body>
<header id="header"> <!-- header -->
<figure> <!-- logotipo -->
<img src="images/invie.png" width="186" height="60" alt="Invie logotipo"/>
</figure>
<nav> <!-- 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>
<section id="portada"> <!-- portada -->
<h1>Guitarras inviesibles</h1><!-- titulo -->
<h3>Sé la estrella de rock que siempre quisiste ser</h3><!-- resumen -->
<button>Conoce mas</button><!-- boton -->
</section>
<section id="guitarras"> <!-- guitarras -->
<h2>Nuestra guitarras</h2><!-- titulo -->
<article> <!-- guitarra 1 -->
<img src="images/invie-acustica.png" alt="Guitarra Invie Acustica" width="200"/>
<h3>Invie Acustica</h3>
<ol>
<li>Estilo vintage</li>
<li>Madera pura</li>
<li>Incluye estuche invisible de aluminio</li>
</ol>
</article>
<article> <!-- guitarra 2 -->
<img src="images/invie-classic.png" alt="Guitarra Invie Classic" width="200"/>
<h3>Invie Classic</h3>
<ol>
<li>Estilo vintage</li>
<li>Liviana</li>
<li>Inicia tu camino como Rockstar</li>
</ol>
</article>
</section>
</body>
</html>