-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
58 lines (54 loc) · 3.22 KB
/
index.php
File metadata and controls
58 lines (54 loc) · 3.22 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
<?php
include("commonheader.php");
?>
<div class="header-carousel owl-carousel">
<!-- Carousel Item 1 -->
<div class="header-carousel-item bg-primary">
<div class="carousel-caption">
<div class="container">
<div class="row align-items-center">
<!-- Text Section -->
<div class="col-12 col-md-6 text-center text-md-start animated fadeInLeft mb-4 mb-md-0">
<h4 class="text-white text-uppercase fw-bold mb-3">Welcome To Classroom Portal</h4>
<h1 class="display-5 display-md-1 text-white mb-3">Learning Made Fun and Easy</h1>
<p class="fs-6 fs-md-5 mb-4">Discover a world of knowledge with interactive lessons, exciting activities, and a supportive learning environment.</p>
<div class="d-flex justify-content-center justify-content-md-start flex-wrap gap-2">
<a class="btn btn-light rounded-pill py-2 px-4" href="#"><i class="fas fa-play-circle me-2"></i> Watch Video</a>
<a class="btn btn-dark rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
<!-- Image Section -->
<div class="col-12 col-md-6 text-center animated fadeInRight">
<img src="img/carousel-2.png" class="img-fluid w-75 w-md-100" alt="Classroom Image" style="max-height: 400px; object-fit: contain;">
</div>
</div>
</div>
</div>
</div>
<!-- Carousel Item 2 -->
<div class="header-carousel-item bg-primary">
<div class="carousel-caption">
<div class="container">
<div class="row align-items-center flex-column-reverse flex-md-row">
<!-- Image Section -->
<div class="col-12 col-md-6 text-center animated fadeInLeft mt-4 mt-md-0">
<img src="img/carousel-2.png" class="img-fluid w-75 w-md-100" alt="Classroom Image" style="max-height: 400px; object-fit: contain;">
</div>
<!-- Text Section -->
<div class="col-12 col-md-6 text-center text-md-end animated fadeInRight">
<h4 class="text-white text-uppercase fw-bold mb-3">Welcome To Classroom Portal</h4>
<h1 class="display-5 display-md-1 text-white mb-3">Empowering Students for Success</h1>
<p class="fs-6 fs-md-5 mb-4">Engage with expert teachers, collaborate with peers, and achieve your academic goals with our innovative classroom solutions.</p>
<div class="d-flex justify-content-center justify-content-md-end flex-wrap gap-2">
<a class="btn btn-light rounded-pill py-2 px-4" href="#"><i class="fas fa-play-circle me-2"></i> Watch Video</a>
<a class="btn btn-dark rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include("commonfooter.php");
?>