-
Notifications
You must be signed in to change notification settings - Fork 1
/
discover.html
83 lines (82 loc) · 4.25 KB
/
discover.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
<!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" />
<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/discover.css" media="screen" />
<script src="./js/index.js" defer async></script>
<link rel="icon" type="image/x-icon" href="./assets/homepage/favicon-vincentvangogh.webp" media="screen" />
<title>Discover Van Gogh - Discover</title>
</head>
<body>
<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-centre">
<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>
<main class="Main">
<div class="Grid-container">
<div class="Text-container">
<h1 class="Column-h1">discover</h1>
<p class="Top-p">
In this section, I invite you to explore the latest news and updates on all things Van Gogh, from exhibitions to filmography and beyond.
</div>
<a class="Discover" href="loving.html" rel="noreferrer">
<img class="Column-img" src="./assets/discover/vangogh-lovingvincent.webp" alt="Image from film Loving Vincent" loading="lazy" />
<div class="Column-frame">
<h2 class="Column-h2">loving <br />vincent</h2>
</div>
</a>
<a class="Immersive" href="immersive.html" rel="noreferrer">
<img class="Column-img" src="./assets/discover/vangogh-immersivexperience.webp" alt="Van Gogh Immersive Experience" loading="lazy" />
<div class="Column-frame">
<h2 class="Column-h2">immersive experience</h2>
</div>
</a>
</div>
</main>
</body>
</html>