-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
130 lines (110 loc) · 4.93 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>contact page</title>
</head>
<body>
<header>
<!-- Humburger -->
<div class="hamburger">
<i class="fa-solid fa-bars-staggered" data-visible="true"></i>
<i class="fa-solid fa-xmark" data-visible="false"></i>
</div>
<nav class="desktop-menu">
<div class="logo">
<!-- <h1>LEARN <em class="logo-Online">ONLINE</em></h1> -->
<img src="images/leanOnline.png" alt="">
</div>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="btn">
<div class="user-dash">aki</div>
<a href="login.html" class="signIn">Sign In</a>
<a href="registration.html" class="signUp" >Sign Up</a>
<a href="#" class="Logout" style="display: none;">Logout</a>
</div>
</nav>
<div class="mobile-menu">
<div class="logo">
<a href="index.html">
<img src="images/leanOnline.png" alt="">
</a>
</div>
<!-- right menu -->
<div class="menu-link" data-visible="false">
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="about.html">AboutUs</a></li>
<li><a href="contact.html">ContactUs</a></li>
</ul>
<div class="btn">
<div class="user-dash">aki</div>
<a href="login.html" class="signIn">Sign In</a>
<a href="registration.html" class="signUp" >Sign Up</a>
<a href="#" class="Logout" style="display: none;">Logout</a>
</div>
</div>
</div>
</div>
</header>
<div id="course-php">
<section class="hero-course-details">
<img src="https://dugsiiye.com/_next/image?url=https%3A%2F%2Fimages.pexels.com%2Fphotos%2F4939658%2Fpexels-photo-4939658.jpeg%3Fauto%3Dcompress%26cs%3Dtinysrgb%26dpr%3D2%26w%3D500&w=1080&q=75" alt="">
<div class="over-hero-detail">
</div>
<div class="c-c">
<div id="page-title">
<h1>About Us</h1>
</div>
</section>
</div>
<!-- section About Us -->
<div class="about-container">
<div class="abo-cont">
<h1>INTRODUCTION</h1>
<p>When we started LearnOnline Courses back in 2018, our goal was to give Somalis from all across the world the ability to learn the skills they’d need to succeed in this modern century. We set out to create a new, interactive way of learning — making it engaging, flexible, and accessible for as many people as possible. Since then, we have helped hundreds of Somali people worldwide unlock modern technical skills and reach their full potential through code. There are two commitments we've made to the world. We've been grounded by these since day one: Increase access to high-quality education for everyone, everywhere; Enhance teaching and learning online through research.</p>
</div>
<div class="abo-cont">
<h1>Our Vision</h1>
<p>To reach out to all Somali communities through knowledge and to be a comprehensive online institute that offers quality-oriented education and accredited certification.</p>
</div>
<div class="abo-cont">
<h1>Our Mission</h1>
<p>We want to create a world where anyone can build something meaningful with technology, and everyone has the learning tools, resources, and opportunities to do so. Code contains a world of possibilities — all that’s required is the curiosity and drive to learn. At LearnOnline, we are dedicated to empowering all people, regardless of where they are in their coding journeys, to continue to learn, grow, and make an impact on the world around them.</p>
</div>
</div>
<footer class="footer">
<div class="footer-contents">
<span>© 2024 LearnOnline Courses. All rights reserved.</span>
<ul class="social-media">
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-whatsapp"></a></li>
<li><a href="#" class="fa fa-youtube"></a></li>
</ul>
</div>
</footer>
<script src="/js/menu.js"></script>
<script src="/js/main.js"></script>
</body>
</html>