-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
179 lines (177 loc) · 5.54 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vogue</title>
<!-- optimize font loading performance -->
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap"
/>
<link rel="stylesheet" href="./style.css" />
<script src="./script.js"></script>
</head>
<body>
<header>
<div class="logo"><img src="./assets/logo.svg" alt="Vogue Logo" /></div>
<nav>
<ul class="nav-links">
<li><a href="/">fashion</a></li>
<li><a href="/">beauty</a></li>
<li><a href="/">culture</a></li>
<li><a href="/">runway</a></li>
</ul>
<div class="close"><img src="./assets/close.svg" alt="Close" /></div>
<div class="burger-menu">
<span></span>
<span></span>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1><span>PARIS</span> <span>FASHION WEEK</span></h1>
<p>The 10 Octobler 2025 and 12 October 2025</p>
<p>
Get the latest on Paris Fashion Week from Vogue. PFW will take over
the city of Paris from February 27 to March 7, 2023. See all the
best street style, front row fashion and backstage moments from
Paris Fashion Week here.
</p>
<button>Looking for PFW tickets? Click here.</button>
</div>
</section>
<section class="latest-news">
<div class="content-box">
<h2>Behind The Scenes At Couture Fashion Week</h2>
<p>
That’s a wrap on another blockbuster Couture Fashion Week in
Paris—but what’s it like to attend the shows as a Vogue France
editor? Watch as Head of Editorial Content Eugénie Trochu, Senior
Market Editor Thomas Delage, and Social and Video Editor Hugo
Compain take us from the office to the frow in this brand new
fashion week vlog, exclusively for Vogue Club members…
</p>
</div>
<div class="images-box">
<img
class="img-1"
src="./assets/latest-news/img-1.jpg"
alt="Latest news image"
/>
<img
class="img-2"
src="./assets/latest-news/img-2.jpg"
alt="Latest news image"
/>
<img
class="img-3"
src="./assets/latest-news/img-3.jpg"
alt="Latest news image"
/>
<img
class="img-4"
src="./assets/latest-news/img-4.jpg"
alt="Latest news image"
/>
</div>
</section>
<section class="top-stories">
<h2>TOP STORIES</h2>
<div class="grid-container">
<div class="grid-item">
<img
src="./assets/top-stories/img-1.jpg"
alt="Top Story Image"
class="large-image"
/>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-2.jpg"
alt="Top Story Image"
class="small-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-3.jpg"
alt="Top Story Image"
class="small-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-4.jpg"
alt="Top Story Image"
class="small-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-5.jpg"
alt="Top Story Image"
class="small-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-6.jpg"
alt="Top Story Image"
class="row-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-7.jpg"
alt="Top Story Image"
class="row-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-8.jpg"
alt="Top Story Image"
class="row-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
<div class="grid-item">
<img
src="./assets/top-stories/img-9.jpg"
alt="Top Story Image"
class="row-image"
/>
<p>COUTURE FASHION WEEK</p>
<p>BY HANNAH JACKSON</p>
</div>
</div>
</section>
</main>
<footer>
<div class="links">
<a href="/">GLAMOUR</a>
<a href="/">VOGUE PARIS</a>
<a href="/">AD</a>
<a href="/">VANITY FAIR</a>
</div>
</footer>
</body>
</html>