35599-vm/index.php
Flatlogic Bot e9ef223b28 New
2025-11-09 14:57:24 +00:00

120 lines
5.9 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SSC FREE COURSES</title>
<meta name="description" content="Built with Flatlogic Generator">
<meta name="keywords" content="online courses, video lectures, mock tests, student learning, instructor platform, educational technology, ssc courses, free courses, paid courses, demo videos, Built with Flatlogic Generator">
<meta property="og:title" content="SSC FREE COURSES">
<meta property="og:description" content="Built with Flatlogic Generator">
<meta property="og:image" content="">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<!-- Google Fonts (Poppins) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Header -->
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<div class="container-fluid">
<a class="navbar-brand" href="#">SSC FREE COURSES</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Mock Tests</a>
</li>
<li class="nav-item">
<a class="btn btn-primary ms-lg-2" href="#">Sign Up</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<h1 class="display-4">Unlock Your Potential with Our Expert-Led Courses</h1>
<p class="lead my-4">From comprehensive video lectures to challenging mock tests, we provide the tools you need to succeed.</p>
<a href="#courses-section" id="browse-courses-btn" class="btn btn-success btn-lg">Browse Courses</a>
</div>
</div>
</div>
</header>
<!-- Courses Section -->
<main id="courses-section" class="py-5">
<div class="container">
<h2 class="text-center mb-5">Featured Courses</h2>
<div class="row">
<?php
$courses = [
[
'title' => 'Complete Guide to Web Development',
'description' => 'Master HTML, CSS, JavaScript, and more. Go from beginner to pro in weeks.',
'image' => 'https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
],
[
'title' => 'Digital Marketing Masterclass',
'description' => 'Learn SEO, social media marketing, and content strategies to grow any business.',
'image' => 'https://images.pexels.com/photos/265087/pexels-photo-265087.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
],
[
'title' => 'Data Science with Python',
'description' => 'Dive into data analysis, machine learning, and visualization with Python.',
'image' => 'https://images.pexels.com/photos/590016/pexels-photo-590016.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
]
];
foreach ($courses as $course):
?>
<div class="col-md-4 mb-4">
<div class="card course-card h-100">
<img src="<?php echo htmlspecialchars($course['image']); ?>" class="card-img-top" alt="<?php echo htmlspecialchars($course['title']); ?>">
<div class="card-body d-flex flex-column">
<h5 class="card-title"><?php echo htmlspecialchars($course['title']); ?></h5>
<p class="card-text"><?php echo htmlspecialchars($course['description']); ?></p>
<a href="#" class="btn btn-primary mt-auto">View Details</a>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container text-center">
<p>&copy; <?php echo date("Y"); ?> SSC FREE COURSES. All Rights Reserved.</p>
</div>
</footer>
<!-- Bootstrap 5 JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>