-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPortfolio.php
175 lines (159 loc) · 5.72 KB
/
Portfolio.php
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
<?php require 'includes/header.php' ?>
<!DOCTYPE html>
<html lang="en">
<>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="path/to/font-awesome/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<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:ital@1&display=swap"
rel="stylesheet"
/>
<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:ital@1&family=Roboto:ital,wght@0,100;1,300;1,500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="CSS/portfolio.css" />
<link
rel="stylesheet"
href="CSS/header-style.css"
/>
<link
rel="stylesheet"
href="CSS/footer-style.css"
/>
<title>MaledaHandcraft</title>
</head>
<body>
<div class="Maledas_Wrapper">
<section class="portfolio-hero">
<h1>Unveiling Masterpieces, One Creation at a Time</h1>
<p>
Embark on a visual journey through the heart of craftsmanship. Maleda
Handcraft presents a gallery of handpicked wonders, each telling a
unique story of creativity and skill. Immerse yourself in the artistry
that defines us.
</p>
</section>
<section class="portfolio">
<div class="inner-container">
<div class="port-item">
<img src="CSS/Image/Image1.jpeg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Image2.jpeg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Image3.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Image4.jpg" alt="" />
</div>
</div>
<div class="inner-container">
<div class="port-item">
<img src="CSS/Image/Jewllery.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/tshirt.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/pottery.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/MINTAF.webp" alt="" />
</div>
</div>
<div class="inner-container">
<div class="port-item">
<img src="CSS/Image/Lace1.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/jewlery22.webp" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/sehan.jpeg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Bag.jpg" alt="" />
</div>
</div>
<div class="inner-container">
<div class="port-item">
<img src="CSS/Image/handcloth.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Guadguada.jpeg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Lace2.jpg" alt="" />
</div>
<div class="port-item">
<img src="CSS/Image/Manybag.webp" alt="" />
</div>
</div>
</section>
<section class="testi">
<h2>Testimonials that Resonate</h2>
<div class="testimonials">
<div class="testimonial">
<img src="CSS/Image/Muslimah.jpg" alt="" class="client-photo" />
<h4>Amira Hussien</h4>
<p>
"Maleda Handcraft has transformed my passion for pottery into a
thriving journey. The platform not only showcases my creations
globally but also connects me with art lovers who appreciate the
essence of handmade art. It's more than a marketplace; it's a
supportive community where each crafted piece tells a unique
story."
</p>
</div>
<div class="testimonial">
<img
src="CSS/Image/Keshit.jpg"
alt="Client 2"
class="client-photo"
/>
<h4>Jane Smith</h4>
<p>
"As a lace artisan, Maleda Handcraft has given me the perfect
stage to showcase the intricate beauty of Ethiopian lace. The
platform's global reach has allowed me to share the rich cultural
heritage embedded in my craft. It's not just a marketplace; it's a
celebration of craftsmanship, connecting creators with
appreciative souls worldwide."
</p>
</div>
<div class="testimonial">
<img
src="CSS/Image/Sadio.jpg"
alt="Client 3"
class="client-photo"
/>
<h4>Bob Johnson</h4>
<p>
"As a lace artisan, Maleda Handcraft has given me the perfect
stage to showcase the intricate beauty of Ethiopian lace. The
platform's global reach has allowed me to share the rich cultural
heritage embedded in my craft. It's not just a marketplace; it's a
celebration of craftsmanship, connecting creators with
appreciative souls worldwide."
</p>
</div>
</div>
</section>
</div>
</body>
</html>
<?php require 'includes/footer.php' ?>