-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 2.44 KB
/
index.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/home.css">
<link rel="icon" href="./images/icons/logo.png" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined|Material+Icons">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');
</style>
<title>Farm Products</title>
</head>
<body>
<div class="container">
<div class="navbar">
<img src="images/icons/logo.svg" alt="">
<nav class="nav">
<a href="../index.html" class="nav-span">
<span class="material-icons" id="home-icon">
home
</span>
</a>
<a href="html/farmer.html" class="nav-span">
<span class="material-icons-outlined" id="farmer-icon">
spa
</span>
</a>
<a href="html/customer.html" class="nav-span">
<span class="material-icons-outlined" id="customer-icon">
person
</span>
</a>
</nav>
</div>
<div class="sub-container">
<div class="left-div">
<div class="title">
<h1 class="title-1">Farm</h1>
<h1 class="title-2">Products</h1>
</div>
<img src="images/photo.png" alt="">
</div>
<div class="right-div">
<div class="home-login">
<h3 class="home-login-heading">Login as,</h3>
<div class="home-button">
<button class="farmer" onclick="window.location.href='html/farmer.html'">Farmer</button>
<button class="customer" onclick="window.location.href='html/customer.html'">Customer</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="js/main.js"></script>
</html>