-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAbout_us.html
138 lines (112 loc) · 5.45 KB
/
About_us.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
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abou-us</title>
<link rel="stylesheet" href="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="about-us.css">
</head>
<body>
<header>
<!-- hambegar -->
<div class="container hambuger">
<img href="index.html" src="./resources/dark_green.png" alt="">
<div>
<i data-visible="true" class="fa-solid fa-bars-staggered bar"></i>
<i class="fa-solid fa-close close" data-visible="false"></i>
</div>
</div>
<!-- desktop-menu -->
<nav class="container desktop-menu">
<a href="/index.html">
<img href="/index.html" src="https://dugsiiye.com/dark_green.png" alt="">
</a>
<ul class="menus-link ugaara-about-pageka">
<li><a href="index.html">Home</a></li>
<li><a href="/courses/courses.html">Courses</a></li>
<li><a href="#">Mentorship</a></li>
<li><a href="/About_us.html">About</a></li>
<li><a href="/contact/index.html">Contact</a></li>
</ul>
<div class="btns">
<a href="/register/login.html">Sign in
</a>
<a class="Signup" href="/register/register.html">Sign up</a>
</div>
</nav>
<!-- mobile-menu -->
<nav class=" mobile-menu" data-visible="false">
<div class="logo-humbegar">
<img href="index.html" src="./resources/dark_green.png" alt="">
</div>
<!-- <ul class="menus-link">
<li><a href="#">Home</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">Mentorship</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul> -->
<div class="menus">
<div class="links">
<div>
<a href="/About_us.html">Home</a>
<a href="#">Mentorship</a>
<a href="/contact/index.html">Contact</a>
</div>
<div>
<a href="/courses/courses.html">Courses</a>
<a href="/About_us.html">About</a>
</div>
</div>
<div class="btns">
<a class="Signup" href="/register/login.html">Sign up</a>
<a href="/register/register.html"> <span>Existing User?</span> Sign in
</a>
</div>
</div>
</nav>
</header>
<section class="About-sec">
<div class="container">
<div class="sec1">
<p>About Us</p>
<h1>Introduction</h1>
<span>
When we started Dugsiiye Online 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.
</span>
</div>
<div class="sec1">
<h1>Our Vision</h1>
<span>
To reach out to all Somali communities through knowledge and to be a comprehensive online institute that offers quality-oriented education and accredited certification.
</span>
</div>
<div class="sec1">
<h1>Our Mission
</h1>
<span>
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 Dugsiiye, 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.
</span>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="foter-left">© 2024 Dugsiiye Online Courses. All rights reserved.</div>
<div class="foter-right">
<i class="fa-brands fa-whatsapp"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-youtube"></i>
</div>
</div>
</footer>
</body>
<script src="main.js"></script>
</html>