Vicent3 commited on
Commit
461fe68
·
1 Parent(s): 96aa23f

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +97 -18
index.html CHANGED
@@ -1,19 +1,98 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>LANIAKEA - Explore the Universe of Computer Science</title>
8
+ <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.0.2/dist/tailwind.min.css" rel="stylesheet">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
10
+ integrity="sha512-om+YH2JUbzyvxd2B8y7WuUVMxusdAw/SFqPnB+imfX7LaFOTPMwr9yeG8NrNmvfW0Pv//HD6fx9ZgqM7nR1BAg=="
11
+ crossorigin="anonymous" />
12
+ </head>
13
+
14
+ <body class="bg-gray-100">
15
+ <header class="py-20 text-center bg-blue-700 text-white">
16
+ <div class="container mx-auto">
17
+ <h1 class="text-4xl font-bold mb-4">Welcome to LANIAKEA</h1>
18
+ <p class="text-xl">Explore the Universe of Computer Science</p>
19
+ </div>
20
+ </header>
21
+
22
+ <section class="py-20">
23
+ <div class="container mx-auto">
24
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8">
25
+ <!-- Category Data Science -->
26
+ <div class="bg-white shadow-lg rounded-lg p-8 text-center">
27
+ <div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
28
+ <i class="fas fa-database fa-2x"></i>
29
+ </div>
30
+ <h3 class="text-xl font-semibold mb-4">Data Science</h3>
31
+ <p class="text-gray-700 mb-4">Discover how to analyze and interpret complex datasets.</p>
32
+ <a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
33
+ </div>
34
+
35
+ <!-- Category AI -->
36
+ <div class="bg-white shadow-lg rounded-lg p-8 text-center">
37
+ <div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
38
+ <i class="fas fa-robot fa-2x"></i>
39
+ </div>
40
+ <h3 class="text-xl font-semibold mb-4">Artificial Intelligence</h3>
41
+ <p class="text-gray-700 mb-4">Learn about AI algorithms and applications.</p>
42
+ <a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
43
+ </div>
44
+
45
+ <!-- Category Web Dev -->
46
+ <div class="bg-white shadow-lg rounded-lg p-8 text-center">
47
+ <div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
48
+ <i class="fas fa-code fa-2x"></i>
49
+ </div>
50
+ <h3 class="text-xl font-semibold mb-4">Web Development</h3>
51
+ <p class="text-gray-700 mb-4">Build interactive websites using the latest technologies.</p>
52
+ <a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
53
+ </div>
54
+
55
+ <!-- Category ML -->
56
+ <div class="bg-white shadow-lg rounded-lg p-8 text-center">
57
+ <div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
58
+ <i class="fas fa-brain fa-2x"></i>
59
+ </div>
60
+ <h3 class="text-xl font-semibold mb-4">Machine Learning</h3>
61
+ <p class="text-gray-700 mb-4">Discover how machines can learn and improve from data.</p>
62
+ <a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
63
+ </div>
64
+
65
+ <!-- Category Cybersec -->
66
+ <div class="bg-white shadow-lg rounded-lg p-8 text-center">
67
+ <div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
68
+ <i class="fas fa-shield-alt fa-2x"></i>
69
+ </div>
70
+ <h3 class="text-xl font-semibold mb-4">Cybersecurity</h3>
71
+ <p class="text-gray-700 mb-4">Learn how to protect computer systems and networks from cyber threats.</p>
72
+ <a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
73
+ </div>
74
+
75
+ <!-- Category OS -->
76
+ <div class="bg-white shadow-lg rounded-lg p-8 text-center">
77
+ <div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
78
+ <i class="fas fa-microchip fa-2x"></i>
79
+ </div>
80
+ <h3 class="text-xl font-semibold mb-4">Operating Systems</h3>
81
+ <p class="text-gray-700 mb-4">Explore Operating systems and how to handle them.</p>
82
+ <a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </section>
87
+
88
+ <footer class="bg-gray-800 text-white py-8">
89
+ <div class="container mx-auto text-center">
90
+ <p>&copy; 2023 LANIAKEA. AGPLv3.</p>
91
+ <p>Made with <3 by <i class="fas fa-heart text-red-500"></i> Me and Myself</p>
92
+ </div>
93
+ </footer>
94
+
95
+ <script src="https://cdn.tailwindcss.com/2.0.2/tailwind.min.js"></script>
96
+ </body>
97
+
98
+ </html>