ecommerce_php/menu.html

21 lines
472 B
HTML

<!DOCTYPE html>
<html>
<body>
<h3>Page</h3>
<ul>
<li><a target="main" href="register.php">Register</a></li>
<li><a target="main" href="login.html">Login</a></li>
</ul>
<h3>Products</h3>
<ul>
<li><a target="main" href="main.html">All Products</a></li>
<li><a target="main" href="main.html">Vegetables</a></li>
</ul>
<h3>Filters</h3>
<input type="checkbox" name="new" onchange="alert('New')">
<label for="new">New</label>
</body>
</html>