-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
31 lines (30 loc) · 1.22 KB
/
header.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
30
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<title>PHP BLOG</title>
<style>
body {
font-family: 'Lato', sans-serif !important;
}
</style>
</head>
<body>
<header class="bg-gray-900 text-white py-4">
<div class="container mx-auto flex justify-between items-center px-4">
<a href="index.php" class="text-lg font-bold">My Website</a>
<nav>
<ul class="flex space-x-4">
<li><a href="index.php" class="hover:text-gray-400">Home</a></li>
<li><a href="blogs.php" class="hover:text-gray-400">Blogs</a></li>
<li><a href="contact.php" class="hover:text-gray-400">Contact</a></li>
</ul>
</nav>
</div>
</header>