-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
185 lines (170 loc) · 6.05 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
180
181
182
183
184
185
<!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">
<title>Vestiaire Collective - @chaniru.lk</title>
<link rel="icon" href="./img/V..png">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/locomotive-scroll.min.js"></script>
<link rel="stylesheet" href="locoScroll.css">
</head>
<script>
document.addEventListener('contextmenu', event => event.preventDefault());
document.onkeydown = function (e) {
if(e.keyCode == 123) {
return false;
}
if(e.keyCode == 122) {
return false;
}
}
</script>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Clients</a>
<a href="#">Contact</a>
</div>
<span style="font-size:18px; cursor:pointer" onclick="openNav()">Menu ☰</span>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<div class="logo">Vestiaire Collective</div>
<div class="brand">
<div class="circle">
<p class="v">V.</p>
</div>
<div class="circle-two">
<p class="im">Impact</p>
</div>
<div class="circle-three">
<p class="report">Report</p>
<div class="green"> 2022</div>
</div>
<a href="" class="down">Download The Report</a>
</div>
<div class="banner">
<p class="heading">Shopping with <br>
Vestiaire Collective <br>
<b>Saves 90%</b>of The <br>
<b>Environmental Cost</b> <br>
of a New Item
</p>
<img src="./img/1.jpg" alt="" class="about-img">
<hr class="line">
</div>
<div class="gallery">
<p class="small-text">
long live fashion: <br>
welcome to our first impact <br>
report
</p>
<p class="company">
Vestiaire Collective is the world’s most tasteful and trusted <br>
fashion resale collective, and it’s our mission to transform the <br>
fashion industry for a more sustainable future. In 2021, we <br>
became the first-ever B Corp certified fashion resale <br>
platform. But we’re not stopping there. We know that a more <br>
sustainable future requires big changes - systemic changes - <br>
and we want to lead by example.
</p>
<div class="slide">
<div class="row">
<div class="column">
<img src="./img/2.jpg" alt="" class="hand-two">
</div>
<div class="column">
<div class="indicator"> 01 - 05</div>
<p class="slide-text">
<b>Vestiaire Collective</b> Is <br>
Transforming <br>
Fashion
</p>
<a href="#" class="myButton">EXPLORE</a>
</div>
</div>
</div>
<div class="slide-two">
<div class="row">
<div class="column">
<img src="./img/3.jpg" alt="" class="hand-two">
</div>
<div class="column">
<div class="indicator"> 02 - 05</div>
<p class="slide-text">
There's Only <br>
One <br>
<b>Vestiaire <br>
Collective</b>
</p>
<a href="#" class="myButton">EXPLORE</a>
</div>
</div>
</div>
<div class="slide-three">
<div class="row">
<div class="column">
<img src="./img/4.jpg" alt="" class="hand-two">
</div>
<div class="column">
<div class="indicator"> 03 - 05</div>
<p class="slide-text-three">
<b>Vestiaire Collective</b> <br>
Makes The <br>
Wolrd Go <br>
Around
</p>
<a href="#" class="myButton">EXPLORE</a>
</div>
</div>
</div>
<div class="slide-four">
<div class="row">
<div class="column">
<img src="./img/5.jpg" alt="" class="hand-two">
</div>
<div class="column">
<div class="indicator"> 01 - 05</div>
<p class="slide-text">
<b>How</b> Can <br>
You Get <br>
Involved ?
</p>
<a href="#" class="myButton">EXPLORE</a>
</div>
</div>
</div>
<div class="slide-five">
<div class="row">
<div class="column">
<img src="./img/6.jpg" alt="" class="hand-two">
</div>
<div class="column">
<div class="indicator"> 01 - 05</div>
<p class="slide-text">
<b>Vestiaire Collective</b> Is <br>
Transforming <br>
Fashion
</p>
<a href="#" class="myButton">EXPLORE</a>
</div>
</div>
</div>
<div class="slide-six">
<a href="https://www.instagram.com/chaniru.lk/" class="credit">
@chaniru.lk Instagram
</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>