Spaces:
Running
Running
link to point to academy.html
Browse files- academy.html +32 -0
academy.html
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Academy</title>
|
| 7 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
</head>
|
| 10 |
+
<body class="bg-gray-100">
|
| 11 |
+
<div class="container mx-auto px-4 py-12">
|
| 12 |
+
<h1 class="text-4xl font-bold text-center mb-8">Welcome to Our Academy</h1>
|
| 13 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
| 14 |
+
<div class="bg-white rounded-lg shadow-md p-6">
|
| 15 |
+
<i class="fas fa-graduation-cap text-5xl text-blue-500 mb-4"></i>
|
| 16 |
+
<h3 class="text-xl font-semibold mb-2">Courses</h3>
|
| 17 |
+
<p class="text-gray-600">Browse our extensive catalog of courses designed for all skill levels.</p>
|
| 18 |
+
</div>
|
| 19 |
+
<div class="bg-white rounded-lg shadow-md p-6">
|
| 20 |
+
<i class="fas fa-chalkboard-teacher text-5xl text-green-500 mb-4"></i>
|
| 21 |
+
<h3 class="text-xl font-semibold mb-2">Instructors</h3>
|
| 22 |
+
<p class="text-gray-600">Learn from industry experts with years of practical experience.</p>
|
| 23 |
+
</div>
|
| 24 |
+
<div class="bg-white rounded-lg shadow-md p-6">
|
| 25 |
+
<i class="fas fa-certificate text-5xl text-purple-500 mb-4"></i>
|
| 26 |
+
<h3 class="text-xl font-semibold mb-2">Certification</h3>
|
| 27 |
+
<p class="text-gray-600">Earn recognized certificates to boost your career.</p>
|
| 28 |
+
</div>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
</body>
|
| 32 |
+
</html>
|