31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Car Sales Afghanistan | Premium Marketplace</title>
|
|
<link rel="stylesheet" href="assets/css/style.css?v=<?php echo time(); ?>">
|
|
<!-- Fonts -->
|
|
<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=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<nav>
|
|
<a href="index.php" class="logo">AFG CARS</a>
|
|
<ul class="nav-links">
|
|
<li><a href="index.php">Home</a></li>
|
|
<li><a href="about.php">About</a></li>
|
|
<li><a href="cars.php">Browse Cars</a></li>
|
|
<li><a href="contact.php">Contact</a></li>
|
|
</ul>
|
|
<div class="auth-buttons">
|
|
<a href="login.php" class="btn btn-outline" style="margin-right: 10px;">Login</a>
|
|
<a href="register.php" class="btn btn-primary">Register</a>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|