-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (79 loc) · 3.59 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
<!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">
<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&family=Poppins:wght@200;300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Fauxica</title>
</head>
<body>
<div class="container">
<header>
<img src="/images/logo.svg" alt="">
<nav>
<ul>
<li><a href='#'>Home</a></li>
<li><a href='#'>Products</a></li>
<li><a href='#'>Gallery</a></li>
<li><a href='#'>Contact</a></li>
</ul>
</nav>
</header>
<section class="grid">
<div class="grid__content">
<h1 class='grid__content__title'>Quality apparel without the price tag</h1>
<p class='grid__content__desc'>No need to spend $xxx on apperal just for the name's sake. Our premium is made from the same stuff.
</p>
<div class="grid__content_actions">
<a class='actions__collection' href="#">Browser our collection</a>
<a class='actions__spring' href="#">
Spring '23 Collection
<img src="./images/arrow.svg" alt="">
</a>
</div>
<div class="grid__content_announce">
<p class='announce__amount'>50K</p>
<p class='announce__desc'>We're proud to announce that we now employ a workforce of over <bold>50,000</bold>. It's all possible because
of you.</p>
</div>
</div>
<div class="grid__photos">
<figure class='figure-01'>
<div class="img-wrapper photo01"></div>
<figcaption>
<div class="figureInfo">
<p class='figureInfo--bold'>Fauxica Sport</p>
<p class='figureInfo--desc'>Running shoe</p>
</div>
<p class='figureInfo__price'>$59</p>
</figcaption>
</figure>
<figure class='figure-02'>
<div class="img-wrapper photo02"></div>
<figcaption>
<div class="figureInfo">
<p class='figureInfo--bold'>Fauxica Sport</p>
<p class='figureInfo--desc'>Running shoe</p>
</div>
<p class='figureInfo__price'>$59</p>
</figcaption>
</figure>
<figure class='figure-03'>
<div class="img-wrapper photo03"></div>
<figcaption>
<div class="figureInfo">
<p class='figureInfo--bold'>Fauxica Sport</p>
<p class='figureInfo--desc'>Running shoe</p>
</div>
<p class='figureInfo__price'>$59</p>
</figcaption>
</figure>
</div>
</section>
</div>
</body>
</html>