-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.php
29 lines (26 loc) · 830 Bytes
/
navbar.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Navbar</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
<!-- Navbar -->
<nav class="bg-blue-600 p-4">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<!-- Logo -->
<div class="text-white font-bold text-xl">
Reg_Log
</div>
<!-- Navbar Links -->
<div class="space-x-4">
<a href="./index.php" class="text-white hover:text-gray-300">Home</a>
<a href="./signup.php" class="text-white hover:text-gray-300">Registration</a>
<a href="./login.php" class="text-white hover:text-gray-300">Login</a>
</div>
</div>
</nav>
</body>
</html>