forked from Sowmiya-17/sowmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (120 loc) · 2.58 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
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
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<title>
Fourbees
</title>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
display: inline-block;
position: relative;
color: #0087ca;
}
li a::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #0087ca;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
li a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
h1,h2{
color: #0087ca;
text-align: center;
}
#b1{
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(125%, -50%);
}
#b2{
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-260%, -50%);
align-items: center;
}
.button{
background-color: #0087ca;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
}
#adminlogo{
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-300%, -125%);
align-items: center;
}
#companylogo{
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(200%, -120%);
}
</style>
</head>
<body>
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="companylogin.html">Company</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li style="float: right;"><a href="3">Contact</a></li>
</ul>
</div>
<hr>
<div>
<h1>FOUR BEES</h1>
<h2>STOCK INVENTORY WEBSITE</h2>
</div>
<div>
<form action="/companylogin">
<img src="company.jpg" height="90" id="companylogo">
<input type="submit" id="b1" class="button" value="Company" >
</form>
<form action="/adminlogin">
<img src="admin.jpg" height="90" id="adminlogo">
<input type="submit" id="b2" class="button" value="Admin">
</form>
</div>
</body>
</html>