forked from elviskim18/Jifunze-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (108 loc) · 4.42 KB
/
index.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
<!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>Jifunze-hub</title>
<link rel="stylesheet" href="./Assets/css/style.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=Actor&family=Adamina&family=Nunito&family=Poppins&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/327b6324f1.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<header>
<!--navbar section-->
<nav class="navbar">
<div class="navbar-nav">
<div class="logo">
<a href="#" style="display: flex; align-items: center; text-decoration: none; color: #4ECB71;">
<img src="./Assets/images/book logo.svg" width="100px" height="100px" alt="jifunze">
<h1>JIFUNZE</h1>
</a>
</div>
<div class="nav-items">
<ul>
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./Assets/pages/courses.html">Courses</a>
</li>
<li>
<a href="./Assets/pages/testimonials.html">Testimonials</a>
</li>
<li>
<button id="login"><a href="./Assets/pages/login.html">Login</a></button>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--body section-->
<section class="section-1">
<!--Introduction info about the site-->
<div class="section-header">
<div class="get-started">
<h1>Learn Easily</h1>
<h1>Anywhere and Anytime</h1>
<p>With today's technology learning is easy with Jifunze</p>
<a href="./Assets/pages/signup.html"><button>GET STARTED</button></a>
</div>
<!--Add homepage image-->
</div>
<!--summary-->
<div class="summary">
<div class="students">
<button>10K+</button>
<p>Students</p>
</div>
<div class="students">
<button>20+</button>
<p>Courses</p>
</div>
<div class="students">
<button>1000+</button>
<p>Tutors</p>
</div>
</div>
</section>
</main>
<!--footer section-->
<section class="footer">
<div class="footer-header">
<div class="header-info">
<h1>Teach the world online</h1>
<p>Create an online video course, teach students across the globe and earn money</p>
</div>
<!--footer contents-->
<div class="footer-contents">
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter-square"></i></a>
<a href="#"><i class="fab fa-instagram-square"></i></a>
</div>
<div class="content">
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Help and Support</a></li>
</ul>
</div>
<div class="content">
<ul>
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Sitemap</a></li>
<li><a href="#">Accessibility Statement</a></li>
</ul>
</div>
</div>
</div>
</section>
<!--end of footer-->
</body>
</html>