-
Notifications
You must be signed in to change notification settings - Fork 0
/
Courses.html
142 lines (106 loc) · 4.16 KB
/
Courses.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
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web3 University-Africa To The World</title>
<link rel="stylesheet" href="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=Poppins:wght@100;200;300;400;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="images/logo.png"></a>
<div class="nav-links" id="navLinks">
<!-- this is the close icon from fontaweosme.com -->
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<!-- unordered list for the nav buttons (not numbered 1, 2, 3+=> unordered) -->
<li><a href="index.html">HOME</a></li>
<li><a href="AboutUs.html">ABOUT</a></li>
<li><a href="Courses.html">COURSES</a></li>
<li><a href="Blog.html">BLOG</a></li>
<li><a href="ContactUs.html">CONTACT</a></li>
</ul>
</div>
<!-- this is the menu Button also from https://fontawesome.com/v4/icon/bars -->
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1>Our Courses</h1>
</section>
<!-- Below is a duplicate of the course section on the Home Page. -->
<!-- Courses Page| Courses page HTML -->
<section class="course">
<h1 class="headword">Courses We Offer</h1>
<p> Just A Few Clicks To Become A Web3 Genius!</p>
<!-- the colomn in the section section -->
<div class="row">
<div class="course-col">
<h3>BLOCKCHAIN BASICS</h3>
<p>Learn Everything you need to get started in web3.
Learn and understand how the Blockchain works.
We provides videos and written tools from top
experts in the Blockchain space</p>
</div>
<div class="course-col">
<h3>CRYPTOCURRENCY BASICS</h3>
<p>Learn Everything about the concept of Cryptocurrencies.
Learn why they are so important, and why they have a huge potential to be the future of money.
</p>
</div>
<div class="course-col">
<h3>NON-FUNGIBLE TOKENS</h3>
<p> What at all are NFTS?. Why are they so important and worth the hype?. In this course
we teach and provide you with tools to get you in the NFTS space. We also teach you why they can have a great influence on real worlds assets
</p>
</div>
<div class="course-col">
<h3>BLOCKCHAIN DEV. COURSES</h3>
<p>Learn programming languages to create your own smart contracts, make blockchain Apps and websites </p>
</div>
</div>
</section>
<!-- facilities Section on courses Page HTMl-->
<section class="facilities">
<h1>Our Facilities</h1>
<p> Join us and grow your connections worldwide</p>
<div class="row">
<div class="facilities-col">
<img src="images/library.png">
<h3>World Class Library</h3>
<p>We have all you need to get you started in Web3</p>
</div>
<div class="facilities-col">
<img src="images/basketball.png">
<h3>Largest Playground</h3>
<p>We have all you need to get you started in Web3</p>
</div>
<div class="facilities-col">
<img src="images/cafeteria.png">
<h3>Eat and Learn</h3>
<p>We have all you need to get you started in Web3</p>
</div
</div>
</section>
<!---Footer-->
<section class="footer">
<h4> our socials</h4>
<p>We aim as giving everybody the chance to also be a part of the digital
revolution. From Africa to the bronx, We preach the Gospel and educate brilliant minds to lead the future.
</p>
<div class="socials">
<i class="fa fa-facebook"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-linkedin"></i>
</div>
<p>Made With <i class="fa fa-heart-o"></i> on Earth <br> Signature: ++EAJ++<a href="https://github.com/ericaddojr">gitHub</a></p>
</section>
<!------Javascript for Toggle Menu slide shit------->
<script src="index.js"> </script>
</body>
</html>