-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvincentsart.html
90 lines (90 loc) · 4.92 KB
/
vincentsart.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
<!--
Descripción: Este archivo HTML contiene una breve introducción a una galería con las mejores obras del artista.
Estructure general:
-Encabezado
-Barra de navegación
-Contenido principal
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata con la descripción de la página incluida para redes sociales teniendo en cuenta el SEO -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Embark on a journey through the colorful and emotional world of Van Gogh's art. Explore his life story, his techniques, and the inspiration behind his masterpieces. Discover the passion, the pain, and the creativity behind his art."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;800;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./css/vincentsart.css" />
<script src="./js/index.js" defer></script>
<link rel="icon" type="image/x-icon" href="./assets/homepage/favicon-vincentvangogh.webp" />
<title>Discover Van Gogh - Vincent's Art</title>
</head>
<body>
<!-- Sección de barra de navegación:
-Icono a la izquierda que lleva a la página principal durante el flujo de la página web
-Imagen central a modo de decoración
-Menú hamburguesa a la derecha que lleva a las otras páginas: menú, la vida de Vicent, el arte de Vincent, eventos relacionados con el autor y un formulario para contactar conmigo -->
<header class="Header">
<div class="Header-left">
<a class="Header-link" href="index.html" rel="noreferrer">
<img class="Header-img" src="./assets/homepage/favicon-vincentvangogh.webp" alt="Self-portrait by Van Gogh used as the logo" loading="lazy" >
</a>
</div>
<div class="Header-center">
<img class="Header-signature" src="./assets/homepage/vincentvangogh-signature.webp" alt="Van Gogh's signature" loading="lazy" >
</div>
<nav class="Header-nav">
<ul class="Header-ul">
<li class="Header-li">
<a class="Nav-link" href="index.html" rel="noreferrer">home</a>
<img class="Nav-img" src="./assets/homepage/starrynight-vincentvangogh-menu.webp" alt="Starry Night by Vincent Van Gogh" loading="lazy" >
</li>
<li class="Header-li">
<a class="Nav-link" href="vincentslife.html" rel="noreferrer">vincent's life</a>
<img class="Nav-img" src=".\assets\homepage\bedroominarles-vincentvangogh-menu.webp" alt="Bedroom in Arles by Vincent Van Gogh" loading="lazy" >
</li>
<li class="Header-li">
<a class="Nav-link" href="vincentsart.html" rel="noreferrer">vincent's art</a>
<img class="Nav-img" src="./assets/homepage/almondblossom-vincentvangogh-menu.webp" alt="Almond Blossom by Vincent Van Gogh" loading="lazy" >
</li>
<li class="Header-li">
<a class="Nav-link" href="discover.html" rel="noreferrer">discover</a>
<img class="Nav-img" src="./assets/homepage/wheatfieldwithcypresses-vincentvangogh-menu.webp" alt="Wheatfield with Cypresses by Vincent Van Gogh" loading="lazy" >
</li>
<li class="Header-li">
<a class="Nav-link" href="contact.html" rel="noreferrer">contact</a>
<img class="Nav-img" src="./assets/homepage/letterbyvincentvangogh-menu.webp" alt="Letters by Vincent Van Gogh" loading="lazy" >
</li>
</ul>
<div class="Hamburger">
<span class="Circle"></span>
<span class="Bar"></span>
<span class="Bar"></span>
<span class="Bar"></span>
</div>
</nav>
</header>
<!-- Contenido principal:
-Contenedor con la introducción de la galería y botón para que el usuario empiece su experiencia-->
<main class="Main">
<div class="Main-container">
<h1 class="Container-h1">vincent's art</h1>
<h2 class="Container-h2">Welcome to Van Gogh’s art gallery:</h2>
<p class="Container-p">
A place to discover some of the masterpieces of one of the greatest artists of all time. Van Gogh is known for his unique style and his ability to capture the emotion and beauty of life
through his art. I'm extremely proud to share Van Gogh's legacy with the world and invite you to explore his work in this gallery. Whether you are a lifelong fan or new to his art, I hope
you will find inspiration and beauty in his paintings.
</p>
<a href="paris.html" class="Button-a" rel="noreferrer">
<div class="Btn" aria-label="Start the experience">start the experience</div>
</a>
<span class="Frame"></span>
</div>
</main>
</body>
</html>