botiga_php/header.php

20 lines
736 B
PHP
Raw Normal View History

2021-12-09 15:17:30 +01:00
<!DOCTYPE html>
<html>
<title>Botiga php</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/w3.css">
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<a href="home.php" class="w3-bar-item w3-button"><b>Botiga</b> php</a>
<!-- Float links to the right. Hide them on small screens -->
<div class="w3-right w3-hide-small">
2021-12-14 17:19:28 +01:00
<a href="my-products.php" class="w3-bar-item w3-button">My Products</a>
<a href="register-page.php" class="w3-bar-item w3-button">Register</a>
<a href="login-page.php" class="w3-bar-item w3-button">Login</a>
2021-12-09 15:17:30 +01:00
</div>
</div>
</div>