-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 2.34 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ercan Bagra</title>
<link rel="icon" href="assets/favicon.png" type="image/png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header Section -->
<header class="header-section py-5 text-center text-white" style="background: #3a7bd5; background: linear-gradient(45deg, #3a7bd5, #00d2ff);">
<div class="container">
<h1 class="display-3 fw-bold mb-4">Welcome to My Apps</h1>
<p class="lead fs-4">Explore all our apps and check their privacy policies in one place. Simple, fast, and transparent.</p>
</div>
</header>
<!-- App List Section -->
<main class="container py-5">
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
<!-- Course Management App -->
<div class="col">
<div class="card shadow-sm border-0 rounded-4">
<img src="./assets/quran.png" class="card-img-top rounded-4" alt="Course-Management">
<div class="card-body">
<h5 class="card-title fw-bold">Course Management</h5>
<p class="card-text">An all-in-one solution to manage courses, students, and academic progress efficiently.</p>
<a href="course-management/index.html" class="btn btn-primary px-4 py-2 rounded-3">Learn More</a>
</div>
</div>
</div>
<!-- More apps can be added here -->
</div>
</main>
<!-- Footer Section -->
<footer class="footer-section py-4 bg-dark text-white text-center">
<p class="mb-0">© 2024 Ercan Bagra. All rights reserved.</p>
</footer>
<!-- Bootstrap JS & FontAwesome -->
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</body>
</html>