-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses_10.php
47 lines (42 loc) · 1.38 KB
/
courses_10.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
<?php
include('includes/connect.php');
include('includes/header.php');
?>
<div class="mainContent clearfix">
<div class="container">
<h1>Class 10</h1>
<div class="row price-table">
<div class="col-sm-6 col-xs-12">
<div class="price-table-inner">
<div class="price-title">
<h3>Ncrt Book</h3>
</div>
<span>Hindi</span>
<span>English</span>
<span>Maths</span>
<span>Social Science</span>
<span>Science</span>
<div class="course-price">
</div>
<a href="course_ncrt_book_subjects_10.php" class="btn btn-default commonBtn">View</a>
</div>
</div>
<div class="col-sm-6 col-xs-12">
<div class="price-table-inner">
<div class="price-title">
<h3>Ncrt Solution</h3>
</div>
<span>Hindi</span>
<span>English</span>
<span>Maths</span>
<span>Social Science</span>
<span>Science</span>
<div class="course-price">
</div>
<a href="course_ncrt_solution_10.php" class="btn btn-default commonBtn">View</a>
</div>
</div>
</div>
</div>
</div>
<?php include('includes/footer.php');?>