-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (91 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EdTech Hub</title>
<link
rel="shortcut icon"
href="./favicon/android-chrome-512x512.png"
type="image/x-icon"
/>
<!-- font awesome cdn link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<!-- custom css file link -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header id="header">
<a href="#" class="logo">EdTech<sup>Hub</sup></a>
<div id="menu" class="fas fa-bars"></div>
<nav id="navbar" class="navbar">
<a href="index.html">home</a>
<a href="course.html">course</a>
<a href="teacher.html">teacher</a>
<a href="price.html">price</a>
<a href="review.html">review</a>
<a href="articles.html">article</a>
<a href="contact.html">contact</a>
</nav>
</header>
<!-- home section -->
<section class="home">
<div class="content">
<h3>E-learning is a better way of learning</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Mollitia
repellat aperiam libero, beatae debitis iusto quia sit aliquid
placeat facilis?
</p>
<a href="login_page.html" class="btn">get started</a>
</div>
<div class="image">
<img src="images/home-img.svg" alt="" />
</div>
</section>
<!-- footer section -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>about us</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Illo,
maxime!
</p>
</div>
<div class="box">
<h3>quick links</h3>
<a href="home.html">home</a>
<a href="course.html">course</a>
<a href="teacher.html">teacher</a>
<a href="price.html">price</a>
<a href="review.html">review</a>
<a href="contact.html">contact</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#">facebook</a>
<a href="#">twitter</a>
<a href="#">instagram</a>
<a href="#">linkedin</a>
</div>
<div class="box">
<h3>contact us</h3>
<p><i class="fas fa-phone"></i> +913-456-7890</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-map-marker-alt"></i> pragraj, india - 400104</p>
</div>
</div>
<div class="credit">
created by <span>MY Team </span> | all rights reserved
</div>
</section>
</div>
<!-- custom js file link -->
<script src="script.js"></script>
</body>
</html>