-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhormuud.html
More file actions
426 lines (396 loc) · 15.9 KB
/
Copy pathhormuud.html
File metadata and controls
426 lines (396 loc) · 15.9 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
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hormuud website</title>
<!-- favicon image -->
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<!-- <link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css"
integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/> -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar-custom">
<!-- Logo -->
<div class="navbar-logo">
<img src="./images/Hormuud-logo.svg" alt="Hormuud Logo">
</div>
<!-- Menu -->
<div class="navbar-menu">
<a href="#" class="active">Home</a>
<a href="#" >Personal <i class="fa-solid fa-angle-down"></i></a>
<a href="#" >Business <i class="fa-solid fa-angle-down"></i></a>
<a href="#" >Who We Are <i class="fa-solid fa-angle-down"></i></a>
<a href="#" >Media <i class="fa-solid fa-angle-down"></i></a>
<a href="#">Contact Us </a>
</div>
<!-- Icons -->
<div class="navbar-icons">
<i class="fa-regular fa-heart"></i>
<div style="position: relative;">
<i class="fa-solid fa-bag-shopping"></i>
<span class="cart-badge">0</span>
</div>
</div>
</nav>
<!-- main and hero section -->
<main>
<!-- Hero Section -->
<section class="hero">
<!-- Left side: Text and CTA -->
<div class="hero-left">
<h1>AFFORDABLE <br> PACKAGE FOR YOU</h1>
<p>Get Unlimited Mobile Internet and Voice Calls for 30 Days, All for just $20!</p>
<a href="#" class="cta-button">GET IT NOW <i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Right side: Icons and Image -->
<div class="hero-right">
<img src="./images/Kudhan_Monthly (1).avif" alt="Person with phone">
</div>
</div>
</section>
<div class="container-below-hero-section">
<div class="wrapper-sm-cards">
<div class="sm-cards">
<div class="image-card">
<img src="https://www.hormuud.com/images/svg/WifiIcon.svg" alt="">
</div>
<div class="text-card">
<h2>Fiber Internet</h2>
<p>Broadband for your home and office</p>
</div>
</div>
</div>
<div class="wrapper-sm-cards">
<div class="sm-cards">
<div class="image-card">
<img src="https://www.hormuud.com/images/svg/Mobiledata.svg" alt="">
</div>
<div class="text-card">
<h2>Mobile Internet</h2>
<p>The cheapest mobile internet in Africa</p>
</div>
</div>
</div>
<div class="wrapper-sm-cards">
<div class="sm-cards">
<div class="image-card">
<img src="https://www.hormuud.com/images/svg/Mobilemoney.svg" alt="">
</div>
<div class="text-card">
<h2>Evc Plus</h2>
<p>One of Africa’s most secure mobile money platforms</p>
</div>
</div>
</div>
</div>
<section class="hero">
<!-- right side: Text and CTA -->
<div class="hero-right hero-img-left">
<img src="./images/80-minutes.avif" alt="Person with phone" >
</div>
<!-- left side: Icons and Image -->
<div class="hero-left hero-text-right">
<h1>Talk longer for less </h1>
<p>With 80 minutes of calls from as little as $1, never leave a story untold when you opt for one of Hormuud’s local packages. </p>
<a href="#" class="cta-button">GET STARTED NOW <i class="fa-solid fa-arrow-right"></i></a>
</div>
</section>
<div class="featured-section">
<h1>Our customers’ favourite personal products</h1>
<p>Here are some of our customers’ favorite personal products & services</p>
</div>
<!-- Featured Cards Section -->
<div class="card-container">
<div class="featured-card">
<i class="fas fa-phone-alt"></i>
<h3>Voice Calls</h3>
</div>
<div class="featured-card">
<i class="fas fa-envelope"></i>
<h3>SMS</h3>
</div>
<div class="featured-card">
<i class="fas fa-file-alt"></i>
<h3>EVC Plus</h3>
</div>
<div class="featured-card">
<i class="fas fa-wifi"></i>
<h3>5G Internet</h3>
</div>
<div class="featured-card">
<i class="fas fa-network-wired"></i>
<h3>Fiber Internet</h3>
</div>
<div class="featured-card">
<i class="fas fa-satellite"></i>
<h3>Dalmar Roaming</h3>
</div>
<div class="featured-card">
<i class="fas fa-box"></i>
<h3>Anfac Packages</h3>
</div>
<div class="featured-card">
<i class="fas fa-plus"></i>
<h3>Anfac Plus</h3>
</div>
</div>
<div class="featured-section">
<h1>Our customers’ favourite business products</h1>
<p>Grow you business and engage your customers through SMS marketing, fully integrated into your business system</p>
</div>
<div class="box-model">
<div class="box">
<img src="https://www.hormuud.com/Svg/MobileSMS.svg" alt="" />
<h1>My SMS API</h1>
<p>
Empower your organization to build and deliver marketing sms while
integrating and collaborating with our messaging api.
</p>
</div>
<div class="box blue">
<img src="https://www.hormuud.com/Svg/internet-svg.svg" alt="" />
<h1>Enterprise Internet</h1>
<p>
Lightning-fast, secure and reliable enterprise internet connections
for large institutions and organizations.
</p>
</div>
<div class="box">
<img src="https://www.hormuud.com/Svg/ivr.svg" alt="" />
<h1>IVR</h1>
<p>Customer service call centres made easy.</p>
</div>
<div class="box black">
<img src="https://www.hormuud.com/Svg/ussd.svg" alt="" />
<h1>USSD Short Codes</h1>
<p>
Strengthen customer relationships and reach your global audience with
special short codes.
</p>
</div>
</div>
<div class="title">
<h1>Choose The Best FTTH Plan For You</h1>
<p>Subscribe your favorite bundle and enjoy high speed 5G internet</p>
</div>
<div class="container">
<div class="cards">
<!-- card-1 -->
<div class="card">
<h3>ADSL+ PACKAGE</h3>
<h1>$25<span>/pachage</span></h1>
<button type="button">RECHARGE NOW!</button>
<hr>
<ul>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i> Unlimited GB</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>20MBps</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>200 Mins</li>
<li class="silver"><i class="fa-solid fa-ban icon"></i>Int Minutes</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Valid for 30 Days</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Super Speed</li>
</ul>
</div>
</div>
<div class="cards">
<!-- card-2 -->
<div class="card">
<h3 class="bg-green">Best deal</h3>
<h1>$30<span>/pachage</span></h1>
<button type="button">RECHARGE NOW!</button>
<hr>
<ul>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i> Unlimited GB</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>30MBps</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>200 Mins</li>
<li class="silver"><i class="fa-solid fa-ban icon"></i>Int Minutes</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Valid for 30 Days</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Super Speed</li>
</ul>
</div>
</div>
<div class="cards">
<!-- card-3 -->
<div class="card">
<h3>ADSL+ PACKAGE</h3>
<h1>$50<span>/pachage</span></h1>
<button type="button">RECHARGE NOW!</button>
<hr>
<ul>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i> Unlimited GB</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>55MBps</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>400 Mins</li>
<li class="silver"><i class="fa-solid fa-ban icon"></i>Int Minutes</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Valid for 30 Days</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Super Speed</li>
</ul>
</div>
</div>
<div class="cards">
<!-- card-4 -->
<div class="card">
<h3>ADSL+ PACKAGE</h3>
<h1>$90<span>/pachage</span></h1>
<button type="button">RECHARGE NOW!</button>
<hr>
<ul>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i> Unlimited GB</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>110MBps</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>700 Mins</li>
<li class="silver"><i class="fa-solid fa-ban icon"></i>Int Minutes</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Valid for 30 Days</li>
<li class="li-silver"><i class="fa-solid fa-circle-check"></i>Super Speed</li>
</ul>
</div>
</div>
</div>
<section class="hero-border">
<div class="left">
<h1>Reach and Engage More Customers With MYSMS</h1>
<p>90% of SMS messages are read within 3 minutes. If you're not
engaging with your customers and prospects through text
messages, you're missing out on one of the most available and
engaged channels for your business.
</p>
<a href="#" class="cta-button">START FOR FREE <i class="fa-solid fa-arrow-right"></i> </a>
</div>
<div class="right">
<img src="./images/mysmslanding.avif" alt="" >
</div>
</section>
<!-- blog section -->
<div class="title-blog">
<h2>Latest Blog Updates From Hormuud</h2>
<p>
Read all the latest information, Blogs, Updates, Offers and much more
</p>
</div>
<div class="container-wrap">
<!-- box or card 1 -->
<div class="box-cards">
<img
src="https://www.hormuud.com/_next/image?url=https%3A%2F%2Fhwapi.hormuud.com%2Fassets%2Fimages%2FKUDHAN.png&w=1920&q=75"class="icon-cards"
alt=""
/>
<h4>
Unlimited Everything at Your Fingertips! Explore Our Newest Service
</h4>
<p>
We are thrilled to announce <strong>KUDHAN</strong> our newest
addition to our fantastic service lineup!
</p>
<a href="#" class="btn-cta">
Read more <i class="fa-solid fa-arrow-right"></i>
</a>
</div>
<!-- box or card 2 -->
<div class="box-cards">
<img
src="https://www.hormuud.com/_next/image?url=https%3A%2F%2Fhwapi.hormuud.com%2Fassets%2Fimages%2FRenewable%20Energy2%20.jpeg&w=1920&q=75"class="icon-cards"
alt=""
/>
<h4>
No Action Too Small: Hormuud Telecom's Inspiring Transition to Renewable Energy Sources
</h4>
<p>
Climate change is an escalating global phenomenon that demands immediate <span id="dots">...</span><span id="more"> attention and concerted efforts from all nations. From the recurring droughts in Somalia to the dangerous floods in various parts of the world, the impacts of climate change are becoming increasingly evident and devastating. It is imperative that we recognize the gravity of the situation and take serious action to mitigate and adapt to the challenges posed by climate change, not just for the sake of individual countries, but for the well-being of the entire planet.</span>
</p>
<a href="#" class="btn-cta">
Read more <i class="fa-solid fa-arrow-right"></i>
</a>
</div>
<!-- box or card 3 -->
<div class="box-cards">
<img
src="https://www.hormuud.com/_next/image?url=https%3A%2F%2Fhwapi.hormuud.com%2Fassets%2Fimages%2FCustomer%20centric.jpeg&w=1920&q=75" class="icon-cards"
alt=""
/>
<h4>
The Customer-Centric Era: Why Putting Customers First is Essential for Business Success
</h4>
<p>
In today's competitive business landscape, customer expectations are higher than ever before. Gone are the <span id="dots">...</span><span id="more">days when businesses could solely focus on their products or services and expect customers to be loyal. Instead, we find ourselves in an era, where prioritizing the needs and preferences of customers is essential for the long-term success of any commercial enterprise. In this blog post, we will explore why putting customers first is not just a trend but a crucial strategy for businesses to thrive.</span>
</p>
<a href="#" class="btn-cta">
Read more <i class="fa-solid fa-arrow-right"></i>
</a>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<div class="container-footer">
<div class="footer-top">
<div class="footer-logo">
<img
src="https://www.hormuud.com/images/hlogo.png"
alt="footer-logo"
/>
</div>
<div class="footer-title">
<h4>Subscribe to our Newsletter</h4>
<p>Get all the latest information, Sales and Offers.</p>
</div>
<div class="footer-form">
<form class="f-sub-form">
<input
type="email"
class="form-control"
name="email"
id="email"
placeholder="Email address here..."
required=""
/>
<button class="footer-btn-cta">subscribe</button>
</form>
</div>
</div>
<div class="footer-middle">
<div class="footer-middle-col1">
<h4>Contact Info</h4>
<label for="phone">Phone:</label> <br>
<a href="#"> call Free 141 | 657950</a>
<label for="phone">Email:</label> <br>
<a href="#"> support@hormuud.com</a>
<label for="phone">Address:</label> <br>
<a href="#"> Hormuud Tower, Airport Road, Waberi, Mogadishu, Somalia</a>
</div>
<div class="footer-middle-col2">
<h4>Corporate</h4>
<a href="#">About Us</a>
<a href="#">Press Release</a>
<a href="#">Social Responsibilities</a>
<a href="#">Customer Service</a>
<a href="#">Terms & Condition</a>
</div>
<div class="footer-middle-col3">
<h4>Personal</h4>
<a href="#">Prepaid</a>
<a href="#">PostPaid</a>
<a href="#">Anfac Plus</a>
<a href="#">ADSL Plus</a>
<a href="#">Offers</a>
</div>
<div class="footer-middle-col4">
<h4>Business</h4>
<a href="#">Mysms</a>
<a href="#">Messaging Api</a>
<a href="#">Enterprise Internet</a>
<a href="#">IVR(Call Center)</a>
<a href="#">USSD Shortcodes</a>
</div>
<div class="footer-center">
<p>Hormuud.com © 2025 All Rights Reserved.| mohamud</p>
</div>
</div>
</div>
</footer>
</body>
</html>