-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
115 lines (106 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About LearnX</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header id="navbar">
<nav class="flex">
<img src="images/Logo.png" alt="Logo" />
<ul class="flex">
<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</a></li>
<li>
<button id="signup-btn">
<a href="/signup.html" class="cnt">SignUp</a>
</button>
</li>
<li>
<button id="login-btn">
<a href="/login.html" class="cnt">Login</a>
</button>
</li>
</ul>
</nav>
</header>
<main style="background-color: #fff;">
<div class="abt-txt">
<p>
<strong id="abt-hdng">About LearnX</strong> <br>
At LearnX.com, we provide individuals with free access to Online Tech
courses and opportunities to up skill with tech skills. With the
continuous shift to a more technologically driven world and a constant
rise in the need for human resources with relevant tech skills, that
is why we at LearnX.com created a community to help individuals,
especially for those in African to gain knowledge in Technology, keep
them updated in the moving tide of a Technologically Driven World and
helping them find their place in Tech.
</p>
<img src="/images/about.png" alt="about" width="50%">
</div>
</main>
<!-- Footer Section -->
<footer>
<!-- Upper part of the footer -->
<div class="upperSide">
<div id="world">
<img src="/images/world.png" alt="worldicon" />
<p>English (United States)</p>
</div>
<div id="legal">
<table>
<tr>
<td><a href="/contact.html">Contact</a></td>
<td><a href="#">Terms of Use</a></td>
</tr>
<tr>
<td><a href="#">FAQs</a></td>
<td><a href="#">Privacys and cookies</a></td>
</tr>
<tr>
<td><a href="/about.html">About Us</a></td>
</tr>
</table>
</div>
<div id="connect">
<h3>Connect with Us</h3>
<div id="social-icon">
<a href="https://www.twitter.com" target="_blank"
><img src="images/twitter icon.png" alt="twitter"
/></a>
<a href="https://www.linkedin.com" target="_blank"
><img src="/images/linkedin.png" alt="linkedin"
/></a>
<a href="https://www.instagram.com" target="_blank"
><img src="/images/instagram.png" alt="instagram"
/></a>
</div>
</div>
</div>
<!-- lower part of the footer -->
<div class="lowerSide">
<p>LearnX Corporation © 2022</p>
</div>
</footer>
</body>
<script>
window.onscroll = function () {
myFunction();
};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky");
} else {
navbar.classList.remove("sticky");
}
}
</script>
</html>