-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcourses.php
179 lines (143 loc) · 4.62 KB
/
courses.php
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!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>Courses</title>
<style>
*{
box-sizing: border-box;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body{
background-image:linear-gradient(rgb(21, 5, 70),black)
}
.container3 {
border: 2px solid rgb(72, 255, 105);;
margin: 30px 100px;
padding-bottom: 150px
}
.container3 h1 {
color: rgb(72, 255, 105);
text-align: center;
padding-top: 30px;
}
.combos {
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 80px
}
.combos h2 {
color: rgb(72, 255, 105);;
}
.combo1,
.combo2,
.combo3 {
border: 2px solid rgb(72, 255, 105);;
padding: 20px 30px;
height:50%;
width:25%;
color: white;
text-align: center;
}
.combos ul li {
list-style: none;
line-height: 40px
}
.buy {
margin-top: 30px;
padding: 10px 10px;
border: none;
border-radius: 3px;
background-color: rgb(72, 255, 105);;
transition: 0.3s ease;
}
.buy a {
color: white;
text-decoration: none;
}
.buy:hover {
background-color: rgb(72, 255, 105);;
}
footer {
background: black;
color: white;
padding: 7px 18px;
}
</style>
</head>
<body>
<div class="container3">
<h1> Programming Courses</h1>
<div class="combos">
<div class="combo1">
<h2> $ 99</h2>
<img src="clanguage.jpg" width="60%" style="margin:30px 0 30px 0">
<ul>
<li> 25 hrs of content</li>
<li>doubt solving via watssapp </li>
<li>expert faculty </li>
<button class="buy"><a href="success.html" style="color:black"><b>Buy Now</b></a></button>
</ul>
</div>
<div class="combo2">
<h2> $ 149</h2>
<img src="c++.jpeg" width="60%" style="margin:30px 0 30px 0">
<ul>
<li>50 hrs of exclusive content </li>
<li>Doubt solving via phn calls </li>
<li> dpp provided everday </li>
<button class="buy"><a href="success.html" style="color:black"><b>Buy Now</b></a></button>
</ul>
</div>
<div class="combo3">
<h2> $ 199 </h2>
<img src="java.jpeg.jpg" width="60%" style="margin:30px 0 30px 0">
<ul>
<li>100 hrs of expert content </li>
<li>personalized doubt solving </li>
<li>weekely tests and solutions </li>
<button class="buy"><a href="success.html" style="color:black"><b>Buy Now</b></a></button>
</ul>
</div>
</div>
</div>
<br>
<div class="container3">
<h1> IIT JEE</h1>
<div class="combos">
<div class="combo1">
<h2> ₹1499 </h2>
<img src="physics.jpeg.jpg" width="90%" style="margin:30px 0 30px 0">
<ul>
<li> Recorded lectures </li>
<li>free modules included </li>
<button class="buy"><a href="success.html" style="color:black"><b>Buy Now</b></a></button>
</ul>
</div>
<div class="combo2">
<h2>₹ 1199</h2>
<img src="chemistry.jpeg.jpg" width="60%" style="margin:30px 0 30px 0">
<ul>
<li>live lectures </li>
<li>offline tests </li>
<button class="buy"><a href="success.html" style="color:black"><b>Buy Now</b></a></button>
</ul>
</div>
<div class="combo3">
<h2> ₹1999 </h2>
<img src="maths.jpg" width="60%" style="margin:30px 0 30px 0">
<ul>
<li> 200+ dpp's</li>
<li> Personal mentorship </li>
<button class="buy"><a href="success.html" style="color:black"><b>Buy Now</b></a></button>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>