-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (74 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Learning For Learners</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<header>
<a href="home.html" class="logo">E Learning<span></span></a>
<div id="menu" class="fa fa-bars"></div>
<nav class="navbar">
<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>
<a href="./login/index.html"><i class="fa fa-user-circle"></i></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="#" 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</a>
<a href="#">course</a>
<a href="#">teacher</a>
<a href="#">price</a>
<a href="#">review</a>
<a href="#">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 class="l"> <i class="fa fa-phone"></i> <a style="display: inline;" href="tel:+91-1234567890">+91-1234567890</a> </p>
<p class="l"> <i class="fa fa-envelope"></i> <a class="l" style="display: inline;" href="mailto: E-Learning@gmail.com">E-Learning@gmail.com</a></p>
<p class="l"> <i class="fa fa-map-marker" ></i>E-Learning Delhi India</p>
</div>
</div>
<div class="credit"> created by <span> Team-E-Learning</span> | all rights reserved </div>
</section>
</div>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>