-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprice.html
133 lines (118 loc) · 3.7 KB
/
price.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EdTech Hub-price</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 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>
<h1 class="heading">select the plan</h1>
<!-- price section -->
<section class="price">
<div class="box">
<h3>basic</h3>
<div class="amount"><span>₹</span>200<span>/mo</span></div>
<ul>
<li>certificates</li>
<li>full courses</li>
<li>full modules</li>
<li>live projects</li>
<li>24 x 7 supports</li>
</ul>
<a href="#" class="btn">select plan</a>
</div>
<div class="box">
<h3>standard</h3>
<div class="amount"><span>₹</span>450<span>/mo</span></div>
<ul>
<li>certificates</li>
<li>full courses</li>
<li>full modules</li>
<li>live projects</li>
<li>24 x 7 supports</li>
</ul>
<a href="#" class="btn">select plan</a>
</div>
<div class="box">
<h3>premium</h3>
<div class="amount"><span>₹</span>900<span>/mo</span></div>
<ul>
<li>certificates</li>
<li>full courses</li>
<li>full modules</li>
<li>live projects</li>
<li>24 x 7 supports</li>
</ul>
<a href="#" class="btn">select plan</a>
</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><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> Prayagraj, india - 211003
</p>
</div>
</div>
<div class="credit">
created by <span> </span> | all rights reserved
</div>
</section>
</div>
<!-- custom js file link -->
<script src="script.js"></script>
</body>
</html>