-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpricing.html
More file actions
145 lines (129 loc) · 3.55 KB
/
pricing.html
File metadata and controls
145 lines (129 loc) · 3.55 KB
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
143
144
145
<!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">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/logo.png">
<title>Pricing</title>
</head>
<body>
<nav>
<a href="./index.html" class="brand-logo">Edu Code</a>
<ul class="links">
<li class="link">
<a href="./index.html">Home</a> </b>
</li>
<li class="link"> <b><a href="./pricing.html" style="color: #ffffff">Pricing</a></b></li>
</ul>
<div class="hamburger">
<div></div>
<div></div>
<div></div>
</div>
</nav>
<section id="header">
<div class="container">
<!--<img src="img/logo.png" alt="logo" class="logo">-->
<h1>Edu Code</h1>
<br>
<h2>Pricing</h2>
</div>
</section>
<!-- TODO : Gotta build the this page -->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.columns {
float: left;
width: 33.3%;
padding: 8px;
}
.price {
list-style-type: none;
border: 1px solid #eee;
margin: 0;
padding: 0;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.price:hover {
box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}
.price .header {
background-color: #111;
color: white;
font-size: 25px;
}
.price li {
border-bottom: 1px solid #eee;
padding: 20px;
text-align: center;
}
.price .grey {
background-color: #eee;
font-size: 20px;
}
.button {
background-color: #04AA6D;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
font-size: 18px;
}
@media only screen and (max-width: 600px) {
.columns {
width: 100%;
}
}
</style>
</head>
<body>
<h2 style="text-align:center">courses we are providing</h2>
<p style="text-align:center">you can go with any of the products available here to continue learning with</p>
<div class="columns">
<ul class="price">
<li class="header">Android Development using Java</li>
<li class="grey">$ 4.1 / 8 weeks</li>
<li>live classes</li>
<li>full pdf available with lecture notes </li>
<li>20+ mock tests and quizzes</li>
<li>genuine certification* </li>
<li class="grey"><a href="#" class="button">buy now</a></li>
</ul>
</div>
<div class="columns">
<ul class="price">
<li class="header" style="background-color:#04AA6D">The joy of computing using Python</li>
<li class="grey">$ 18.45 / 16 weeks</li>
<li>live classes</li>
<li>full pdf available with lecture notes</li>
<li>35 + mock tests and quizzes</li>
<li>genuine certification*</li>
<li class="grey"><a href="#" class="button">buy now</a></li>
</ul>
</div>
<div class="columns">
<ul class="price">
<li class="header">R language programming </li>
<li class="grey">$ 3.9 / 4 weeks</li>
<li>live classes</li>
<li>full pdf available with lecture notes</li>
<li>10+ mock tests and quizzes</li>
<li>genuine certification*</li>
<li class="grey"><a href="#" class="button">buy now</a></li>
</ul>
</div>
*you can use this certificate for credit tranfer into your institution/school
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll/dist/smooth-scroll.polyfills.min.js"></script>
<script src="js/smooth-scroll.min.js"></script>
<script src="js/smooth-scroll.polyfills.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>