-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
243 lines (239 loc) · 9.17 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<!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>Document</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header flex">
<div class="header__logo">
<img src="./images/logo.svg" alt="logo" />
</div>
<nav class="header__nav">
<ul class="flex">
<li>
<a href="#"
>Home <i class="fa-solid fa-caret-down"></i
></a>
</li>
<li><a href="#">Project</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li>
<a href="#"
>Other Page <i class="fa-solid fa-caret-down"></i
></a>
</li>
</ul>
</nav>
</header>
<section class="hero flex container">
<div class="hero__left">
<img src="./images/Untitleddesign(35).png" alt="hero-image" />
</div>
<div class="hero__right">
<h3>Hello I'm Arthur</h3>
<h1>Visual Designer</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Autem deleniti nam numquam saepe. Odio, saepe quas ipsa
quasi rem placeat quod omnis, cumque quisquam fugit
deleniti. Reprehenderit tempora inventore tempore.
</p>
<button class="btn">About Me</button>
</div>
</section>
<!-- cards -->
<section class="cards container">
<div class="card-1">
<div class="card__logo">
<img src="./images/ui-designAsset.svg" alt="uidesign" />
</div>
<div class="card__content">
<h3>UI Design</h3>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing
elit.
</p>
</div>
<button class="card__btn">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="card-1 card-active">
<div class="card__logo">
<img src="./images/productdesignAsset.svg" alt="uidesign" />
</div>
<div class="card__content">
<h3>Product Design</h3>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing
elit.
</p>
</div>
<button class="card__btn card__btn-active">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="card-1 card-13">
<div class="card__logo">
<img src="./images/brandingAsset.svg" alt="uidesign" />
</div>
<div class="card__content">
<h3>Branding</h3>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing
elit.
</p>
</div>
<button class="card__btn">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="card-2">
<h2>12</h2>
<h4>Years Experience</h4>
</div>
<div class="card-3">
<div class="card">
<h2>60+</h2>
<h4>Clients</h4>
</div>
<div class="card">
<h2>08</h2>
<h4>Years Experience</h4>
</div>
<div class="card">
<h2>122+</h2>
<h4>Completed Projects</h4>
</div>
<div class="card">
<h2>10</h2>
<h4>Achievments</h4>
</div>
</div>
</section>
<!-- project -->
<section class="projects container">
<div class="projects__header flex">
<div class="projects__header-left">
<h2>Featured Projects</h2>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing
elit.
</p>
</div>
<button class="button">View All</button>
</div>
<div class="projects__cards">
<div class="projects__card">
<div class="projects__card-img">
<img
src="./images/Screenshot 2022-06-25 131915.jpg"
alt="project 1"
/>
</div>
<h3>The Vintage</h3>
<button class="card__btn">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="projects__card">
<div class="projects__card-img">
<img
src="./images/Screenshot 2022-06-25 132031.jpg"
alt="project 2"
/>
</div>
<h3>Foodasa</h3>
<button class="card__btn">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="projects__card">
<div class="projects__card-img">
<img
src="./images/Screenshot 2022-06-25 133016.jpg"
alt="project 3"
/>
</div>
<h3>Marco Accent</h3>
<button class="card__btn">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="projects__card">
<div class="projects__card-img">
<img
src="./images/Screenshot 2022-06-25 133426.jpg"
alt="project 4"
/>
</div>
<h3>MoZaik</h3>
<button class="card__btn">
know More <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
</div>
</section>
<section class="contact container flex">
<div class="contact__left">
<h1>Let's work together on your next project</h1>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Officiis, suscipit!
</p>
</div>
<div class="contact__right">
<button class="button">Contact</button>
</div>
</section>
<footer class="footer">
<nav class="footer__nav">
<ul class="flex">
<li>
<a href="#">Home</a>
</li>
<li><a href="#">Project</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li>
<a href="#">Other Page</a>
</li>
</ul>
</nav>
<div class="footer__icons flex container">
<div class="footer__logo">
<img src="./images/logo.svg" alt="logo" />
</div>
<div class="footer__social-icons flex">
<div class="footer__social-icon">
<img
src="./images/facebookAsset.svg"
alt="facebookAsset"
/>
</div>
<div class="footer__social-icon">
<img
src="./images/twitterAsset.svg"
alt="twitterAsset"
/>
</div>
<div class="footer__social-icon">
<img src="./images/youtubeAsset2.svg" alt="youtube" />
</div>
</div>
</div>
</footer>
</body>
</html>