-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (68 loc) · 2.36 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
<!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>MY MINI WEBSITE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section-->
<header>
<nav class="navigation">
<div class="logo">
<a href="#"><span>DLT</span>AFRICA</a>
</div>
<div class="navList">
<a href="#">Home</a>
<a href="#">Courses</a>
<a href="#">Features</a>
<a href="#">Review</a>
<a href="#">Pricing</a>
</div>
<div class="btn">
<a href="#">
Buy Now
</a>
</div>
</nav>
</header>
<!-- Main Body of The Website -->
<main>
<section class="heroSection container">
<div class="heroContainerLeft">
<h1 class="heroHeading">
Learn Programming Skills And get tech Job with Ease
</h1>
<p class="heroTest">
Join Our next cohort to accelerates your dream of being a World Class software developer. No coding experience required
</p>
<div class="btn">
<a href="#">
Get started
</a>
</div>
</div>
<div class="heroContainerRight">
<img src="/images/whatsapp.jpg"
alt=" A hand of a computer laptop">
</div>
</section>
<!-- Hero section -->
<section class="about container">
<h2>
About
</h2>
<p>
We're a young and talented group of enterpreneurs and engineers with a mission to provide market driven tech education and setup skills that can help people change their lives .Our founding team and advisors include blockchain expertise, successful enterpreneurs and senior engineers from different part of the world
</p>
</section>
</main>
<footer class="footerSection">
<p>
© All Right Reserved. DLTAfrica Inc. 2024
</p>
</footer>
</body>
</html>