41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="assets/css/catbar.css">
|
|
</head>
|
|
|
|
|
|
<nav class="home-nav" aria-label="Homenavigation">
|
|
<div class="home-nav__inner container">
|
|
<ul class="home-nav__list">
|
|
|
|
<li class="home-nav__item">
|
|
<a href='index.php?category=iphone'">iPhone</a>
|
|
</li>
|
|
|
|
<li class="home-nav__item">
|
|
<button onclick="location.href='index.php?category=ipad'">iPad</button>
|
|
</li>
|
|
|
|
<li class="home-nav__item">
|
|
<button onclick="location.href='index.php?category=macbook'">MacBook</button>
|
|
</li>
|
|
|
|
<li class="home-nav__item">
|
|
<button onclick="location.href='index.php?category=airpods'">AirPods</button>
|
|
</li>
|
|
|
|
<li class="home-nav__item">
|
|
<button onclick="location.href='index.php?category=watch'">Watch</button>
|
|
</li>
|
|
|
|
<li class="home-nav__item">
|
|
<button onclick="location.href='index.php?category=accessories'">Accessories</button>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
</nav>
|