-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbill.html
118 lines (104 loc) · 2.01 KB
/
bill.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
118
<html>
<head>
<link rel="stylesheet" href="css/all.css">
<style>
.header {
position: fixed;
right:0;
top: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
/* Header styling */
.LOGO{
height: 100px;
width: auto;
float: left;
margin-left: 30px;
}
.list{
float: right;
margin-right: 40px;
}
.list li{
display: inline-block;
margin-right: 30px;
margin-top: 30px;
}
.list li a{
text-decoration: none;
font-size: 20px;
color:white;
font-family: serif;
font-weight: bold;
}
.list li:hover{
border-bottom: 4px solid yellow;
transition: .3s;
}
.main-box{width:auto;
margin-top:150px;
}
.heading{top:12%;
color:black;
font-size:35px;
text-align:center;
position:relative;
letter-spacing:3px;
line-height:10px
}
.check
{ font-size:30px;
position:relative;
margin-top:150px;
font-family:Brushscriptm7,cursive;
}
.check h4{
text-align:center
}
.check p{
margin-left:10px;
color:green;
}
.farm{
display:inline-flex;
padding:10px;
font-size:20px;
font-family:aerial;
border:2px solid green;
background-color:black;
color:yellow;
border-radius:5px;
margin-left:20px;
padding:10px;
letter-spacing:1px;
}
.align{
position:absolute;
left:40%;
}
.adjust{
display:inline-flex;
}
</style>
</head>
<body>
<div class="header">
<a href="startpage.php"> <img src="images/NATURE-ONE-DAIRY-CORPORATE-LOGO-01.png" alt="logo" class="LOGO"></a>
<ul class="list">
<li> <a href="startpage.php" class="effect"><i class="fas fa-home"></i> HOME</a> </li>
<li> <a href="Service.php" class="effect"><i class="fas fa-dolly-flatbed"></i> SERVICES</a> </li>
<li> <a href="aboutus.html" class="effect"><i class="fas fa-info-circle"></i> ABOUT US</a> </li>
</ul>
</div>
<div class="check">
<h4> welcome to the bill generation ...portal...</h4>
<div class="align">
<p>Bill generaration for</p>
<form class="adjust" action="farmerbill.php" ><button class="farm" >farmer</button></form>
</div>
</div>
</body>
</html>