index.html 1.21 KB
Newer Older
Velibor Najdovski's avatar
Velibor Najdovski committed
1
2
3
4
5
6
7
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Brainster Library</title>
    <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
8
    <link href="style.css" rel="stylesheet">
Velibor Najdovski's avatar
Velibor Najdovski committed
9
10
</head>
<body>
11
12
13
14
15
        <!-- Sticky Navbar -->
        <nav class="bg-gray-800 text-white p-4 sticky top-0 z-50">
            <div class="container mx-auto flex justify-between items-center">
                <!-- Logo Placeholder -->
                <div>
16
                    <img src="./images/Logo.png" alt="Logo" class="h-8">
17
                </div>
Velibor Najdovski's avatar
Velibor Najdovski committed
18
    
19
20
21
22
23
24
25
26
                <!-- Login Button -->
                <div>
                    <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
                        Login
                    </button>
                </div>
            </div>
        </nav>
27

28
        <section class="hero-background h-screen flex items-center justify-center">
29
30
            <h1 class="text-white text-4xl md:text-6xl font-bold text-center">Embark on a Journey in Every Page</h1>
        </section>
Velibor Najdovski's avatar
Velibor Najdovski committed
31
32
</body>
</html>