-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsandretail.html
More file actions
36 lines (34 loc) · 1.5 KB
/
Copy pathconsandretail.html
File metadata and controls
36 lines (34 loc) · 1.5 KB
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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Farmer's Page</title>
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="consumer.css">
</head>
<body>
<header>
<h1>Consumer & Retailer Page</h1>
</header>
<nav class="side-nav">
<ul>
<li><a href="login.html"><img src="src/img/login.png" alt="Login"></a></li>
<li><a href="index.html"><img src="src/img/home.png" alt="Home"></a></li>
<li><a href="product.html"><img src="src/img/products.png" alt="Products"></a></li>
<li><a href="userProfile.html"><img src="src/img/profile.png" alt="Profile"></a></li>
<li><a href="contacts.html"><img src="src/img/contact and support.png" alt="Contact"></a></li>
</ul>
</nav>
<div class="content">
<a href="product.html" class="btn btn-3d">Continue as Consumer</a>
<a href="product.html" class="btn btn-3d">Continue as Retailer</a>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>