-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (82 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juanito Chopper - Inicio</title>
<link rel="stylesheet" href="css/normalice.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="assets/img/faviconAceYellow.png" type="image/x-icon">
</head>
<body>
<header>
<section class="banner">
<h1 id="tituloBanner">JUANITO CHOPPER</h1>
<h4 id="subtituloBanner">CUSTOM GARAJE</h4>
</section>
<nav>
<section class="navButton">
<img src="assets/img/homeIcon.png" alt="Home Icon">
<a href="#">HOME</a>
</section>
<section class="navButton">
<img src="assets/img/aboutMeIcon.png" alt="About Me Icon">
<a href="pages/biografia.html">SOBRE MI</a>
</section>
<section class="navButton">
<img src="assets/img/worksIcon.png" alt="My Works Icon">
<a href="pages/portfolio.html">MIS TRABAJOS</a>
</section>
<section class="navButton">
<img src="assets/img/contactIcon.png" alt="Contact Icon">
<a href="pages/contacto.html">CONTACTO</a>
</section>
</nav>
</header>
<main>
<section class="content" id="profile">
<article>
<img class="profilePic" src="assets/img/juanito.jpg" alt="Juanito Chopper">
<h1>Juanito Chopper</h1>
</article>
<article id="bienvenida">
<h2>Personalización de motos custom</h2>
<p>Bienvenido a la web de <strong>Juanito Chopper</strong>, tu taller de personalización de <strong>motos custom</strong> en Segovia.</p>
<p>En <strong>Juanito Chopper</strong> somos especialistas en la <strong>transformación de motos</strong> de serie en auténticas obras de arte. Contamos con un equipo de profesionales con más de 20 años de experiencia en el sector, que te ayudarán a crear la moto de tus sueños.</p>
<p>Si estás buscando una moto única y personalizada, no dudes en contactarnos. <strong>Te asesoraremos y diseñaremos la moto que mejor se adapte a tu estilo</strong> y necesidades.</p>
<a href="pages/contacto.html">Contacta con nosotros</a>
</article>
</section>
</main>
<footer>
<section id="footerA">
<article class="banner" id="logoFooter">
<h3 id="tituloBanner">JUANITO CHOPPER</h3>
<h6 id="subtituloBanner">CUSTOM GARAJE</h6>
</article>
<article id="rrss">
<div>
<img src="assets/img/logoTwitter.png" alt="">
<a href="">Twitter</a>
</div>
<div>
<img src="assets/img/logoFacebook.png" alt="">
<a href="">Facebook</a>
</div>
<div>
<img src="assets/img/logoInstagram.png" alt="">
<a href="">Instagram</a>
</div>
<div>
<img src="assets/img/logoYoutube.png" alt="">
<a href="">Youtube</a>
</div>
</article>
</section>
<address>
<span>☎ +34 921 17 20 42 /</span>
<span>✉️ [email protected] </span>
</address>
</footer>
</body>
</html>