forked from RAJNANDINI8/OnlineVotingSystemProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPDATED1.jsp
111 lines (100 loc) · 2.56 KB
/
UPDATED1.jsp
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
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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">
<title>Document</title>
</head>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url(https://img.freepik.com/premium-photo/scientific-molecule-background-with-flow-waves-medicine-science-technology-chemistry-wallpaper-banner-with-dna-molecules-geometric-dynamic-linear-waves-illustration_230610-1050.jpg?w=2000) no-repeat;
background-size: cover;
background-position: center;
}
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 100px;
display:flex;
justify-content: space-between;
align-items: center;
z-index:99 ;
}
.Logo {
flex: 1;
}
.navigation {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.navigation .btnLogin-popup{
width: 110px;
height: 40px;
background: transparent;
border: 2px solid black;;
outline: none;
border-radius: 6px;
cursor: pointer;
font-size: 1.1em;
color: black;
font-weight: 500;
margin-left: 40px;
transition: .5s;
position: absolute;
left: 1150px;
}
.navigation .btnLogin-popup:hover{
background-color: rgb(15, 15, 15);
color: rgb(253, 243, 243);
}
.navigation .btnLogin-popup1{
width: 110px;
height: 40px;
background: transparent;
border: 2px solid black;;
outline: none;
border-radius: 6px;
cursor: pointer;
font-size: 1.1em;
color: black;
font-weight: 500;
margin-left: 40px;
transition: .5s;
position: absolute;
left: 1300px;
}
.navigation .btnLogin-popup1:hover{
background-color: rgb(15, 15, 15);
color: rgb(253, 243, 243);
}
p{
font-size: 70px;
}
</style>
<body>
<header>
<h2 class="Logo">Evote</h2>
<nav class="navigation">
<button class="btnLogin-popup1" onclick="window.location.href = 'voterlogin.jsp';">Home</button>
</nav>
</header>
<p>UPDATED SUCCESSFULLY!!!!</p>
</body>
</html>