-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.14.0/dist/full.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div class="min-h-screen bg-base-200">
<div class="navbar bg-base-100 shadow-lg">
<div class="flex-1">
<h1 class="text-2xl font-bold px-4 text-4xl font-bold text-center text-blue-500">School Website</h1>
</div>
<div class="flex-none gap-2">
<a href="login.php" class="btn btn-primary">Login</a>
<a href="registration.html" class="btn btn-secondary btn-outline">Register</a>
</div>
</div>
<div class="hero min-h-[80vh]">
<div class="hero-content text-center">
<div class="max-w-md">
<h2 class="text-5xl font-bold text-primary">Welcome to DEFTEC School Website</h2>
<p class="py-6 text-lg">This is a simple homepage featuring login and registration buttons.</p>
<div class="flex gap-4 justify-center">
<button class="btn btn-primary">Get Started</button>
<button class="btn btn-ghost">Learn More</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<footer class="bg-gray-800 text-white py-4 mt-8">
<div class="container mx-auto text-center">
<p>© 2024 School System. All rights reserved.</p>
</div>
</footer>