-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathahome.html
117 lines (66 loc) · 2.44 KB
/
ahome.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Home</title>
<!-- Bootstrap core CSS -->
<link href="style/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
header {
padding: 15px;
font-size: 75px;
color: white;
lenght:100%;
}
.cont{
padding-left:30px;
margin:0;
}
.vl {
border-left: 6px solid green;
height: 900px;
}
</style>
</head>
<body>
<!--title and logo-->
<div> <header style="background-color: #242424; ">
<img src="img/KSlogo.png" alt="Logo" style="width:150px;" >
कृषी संपन्न
<a href="aboutus.php"class="btn btn-success float-right"align="right" style="margin:10px;">About us</a>
<a href="index.php" class="btn btn-success float-right"align="right" style="margin:10px;" >Logout</a>
</header>
<header style="background-color: #74cc5c; padding: 10px; "></header>
</div>
<div class="cont" >
<div class="row">
<div class="col-lg-3" style="padding-top:20px;">
<h1 class="my-3">OPTIONS</h1>
<div class="list-group">
<a href="user.php" class="list-group-item" style= "color:green; font-weight:bold;">USER</a>
<a href="adminpost.php" class="list-group-item" style= "color:green; font-weight:bold;">POSTS</a>
<a href="admincontract.php" class="list-group-item" style= "color:green; font-weight:bold;">CONTRACTS</a>
</div>
</div>
<!-- /.col-lg-3 -->
<div class="col-1" style="width:10px" >
<div class="vl"></div>
</div>
<!-- /.col-lg-1 -->
<div class="col-8" style="padding-left:0px; padding-top:30px; margin-left:-40px;">
<h2 style="background-color:#74cc5c; padding:20px;color:white;"><b>✧List of farmers</b></h2>
<br>
</div>
<!-- col-8 -->
</div>
<!-- row -->
</div>
<!-- cont -->
</body>
</html>