-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
169 lines (139 loc) · 5.36 KB
/
explore.html
File metadata and controls
169 lines (139 loc) · 5.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS Link -->
<!-- <link rel="stylesheet" href="index.css"> -->
<link rel="stylesheet" href="about.css">
<!-- Remix icon -->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.1.0/fonts/remixicon.css"
rel="stylesheet"
/>
<title>Stylian --- Fashion store</title>
</head>
<body>
<main>
<!-- Navbar -->
<nav>
<div class="brand">
<a href="index.html">
<div class="logo">Stylian</div>
</a>
<div class="search-bar">
<i class="ri-search-line"></i>
<input type="text" placeholder="Search" />
</div>
</div>
<ul class="links">
<i class="ri-close-fill" id="close"></i>
<li class="links">
<a href="index.html">Home</a>
</li>
<li class="links">
<a href="about.html">About</a>
</li>
<li class="links">
<a href="explore.html">Explore</a>
</li>
<li class="links">
<a href="#">Show</a>
</li>
<div class="profile-none">
<div class="icons">
<i class="ri-notification-4-fill"></i>
<i class="ri-chat-4-fill"></i>
</div>
<div class="img">
<img src="img/Ellipse 258.png" width="40px" alt="" />
</div>
</div>
</ul>
<i class="ri-menu-line burger" id="burger" ></i>
<div class="profile">
<div class="icons">
<i class="ri-notification-4-fill"></i>
<i class="ri-chat-4-fill"></i>
</div>
<div class="img">
<img src="img/Ellipse 258.png" width="40px" alt="" />
</div>
</div>
</nav>
</main>
<div class="explores">
<div class="e-header">
<h1>Explore Collection</h1>
</div>
<div class="up-brands">
<div class="brand-card">
<img class="brand-logo" src="img/creator1111.png" alt="" />
<div class="brand-detail">
<img src="img/photo1 (1).png" alt="" width="70px" />
<h4>Kalki Ziza</h4>
<p>From Cameroon to the world, My story is one of perseverance, determination, and success</p>
<button>Follow</button>
</div>
</div>
<div class="brand-card">
<img class="brand-logo" src="img/creator2111.png" alt="" />
<div class="brand-detail">
<img src="img/photo2 (1).png" alt="" width="70px" />
<h4>John </h4>
<p>Born into West europe country, I have overcome a lot of pressure in my experience, </p>
<button>Follow</button>
</div>
</div>
<div class="brand-card">
<img class="brand-logo" src="img/creator3111.png" alt="" />
<div class="brand-detail">
<img src="img/photo311.png" alt="" width="70px" />
<h4>Malala</h4>
<p>gone on to achieve. Now, they are bringing their unique story and perspective to the world </p>
<button>Follow</button>
</div>
</div>
<div class="brand-card">
<img class="brand-logo" src="img/photo3222 (4).png" alt="" />
<div class="brand-detail">
<img src="img/photo3222 (1).png" alt="" width="70px" />
<h4>Siman Gele</h4>
<p> Visual artists: "Our visual artists are inspired by the world around them. They draw on their life experiences, their passions.</p>
<button>Follow</button>
</div>
</div>
<div class="brand-card">
<img class="brand-logo" src="img/photo3222 (5).png" alt="" />
<div class="brand-detail">
<img src="img/photo3222 (2).png" alt="" width="70px" />
<h4>Naneldi Fana</h4>
<p> The emotions to create stunning NFT art. Every brushstroke, every pixel, is a reflection of their unique vision. </p>
<button>Follow</button>
</div>
</div>
<div class="brand-card">
<img class="brand-logo" src="img/photo3222 (6).png" alt="" />
<div class="brand-detail">
<img src="img/photo3222 (3).png" alt="" width="70px" />
<h4>Seysay Kania</h4>
<p> The emotions to create stunning NFT art. Every brushstroke, every pixel, is a reflection of their unique vision</p>
<button>Follow</button>
</div>
</div>
</div>
</div>
<footer>
<div class="f-logo">
<h4>Stylian</h4>
<small>Lorem ipsum dolor sit amet consectetur adipisicing elit. At ipsum debitis?</p>
</div>
<ul>
<li>About</li>
<li>Service</li>
<li>Contact</li>
</ul>
</footer>
<script src="main.js"></script>
</body>
</html>