-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathce2voters_votingpage.html
More file actions
77 lines (60 loc) · 2.3 KB
/
ce2voters_votingpage.html
File metadata and controls
77 lines (60 loc) · 2.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="body">
<header>
<div class="container">
<a href="home.html"><img class="logo" src="logo.jpg"></a>
<h1 class="hover-4">ICT Voting Portal</h1>
<nav>
<ul>
<div class="flex">
<div>
<li class="home"><a href="home.html">SignUp</a></li>
</div>
<div>
<li><a href="about_page.html">About</a></li>
</div>
</li>
<div>
<li style="float:right" class="about"><a href="home.html">LogOut</a></li>
</div>
</div>
</ul>
</nav>
</div>
</header>
<center>
<form class="signup" style="margin-top: 300px;" action="post">
<h2 class="votinghead">GIVE YOUR VOTE TO THE FOLLOWING CANDIDATES OF CE SECOND YEAR</h2>
<label for="vote">Mukesh Patel</label>
<input type="radio" id="vote" name="ce1" value="19">
<br><br>
<label for="vote">Sakshi Sharma</label>
<input type="radio" id="vote" name="ce1" value="20">
<br><br>
<label for="vote">Anjali Singh</label>
<input type="radio" id="vote" name="ce1" value="21">
<br><br>
<label for="vote">Rohan Gupta</label>
<input type="radio" id="vote" name="ce1" value="22">
<br><br>
<label for="vote">Preeti Mehta</label>
<input type="radio" id="vote" name="ce1" value="23">
<br><br>
<label for="vote">Vikram Singh</label>
<input type="radio" id="vote" name="ce1" value="24">
<br><br>
<br >
<a href="#" <input class="signup" type="submit" value="Vote"><button class="signup">VOTE</button></a><br><br>
</form>
</center>
<br><br>
<marquee class="marquee">The Election will be held only between 8 AM to 12 PM. So, hurry up and Represent Yourself!!!</marquee>
</body>
</html>