-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
115 lines (83 loc) · 3.25 KB
/
home.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
<!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>
<li class="home"><a href="home.html">Sign Up</a></li>
<li><a href="about_page.html">About</a></li>
</li>
<li style="float:right" class="about"><a href="home.html">Log Out</a></li>
</ul>
</nav>
</div>
</header>
<center>
<div class="flex">
<div class="slider">
<div class="rotator">
<div class="items">
<img src="img4.jpeg" >
</div>
<div class="items">
<img src="img1.jpeg" >
</div>
<div class="items">
<img src="img3.jpeg" >
</div>
<div class="items">
<img src="img4.jpeg" >
</div>
</div>
</div>
<div class="sloganarea">
<h2 class="text">
<img src="slogan2.jpeg" alt="">
</h2>
</div>
<div>
<img style="height: 350px;" src="slogan1.jpg">
</div>
</div>
<div class="reg_form">
<h2 style="font-family:Arial, Helvetica, sans-serif; font-size: xx-large;padding-top: 50px;">Registration Form</h2>
<form method="post">
<label for="mobile">Mobile No.:</label>
<input type="text" id="mobile" name="number" required placeholder="enter your registered number"><br><br><br>
Select your Department:
<input type="radio" id="ce" name="branch" value="ce">
<label for="ce">CE</label>
<input type="radio" id="ec" name="branch" value="ec">
<label for="ec">EC</label>
<input type="radio" id="it" name="branch" value="it">
<label for="it">IT</label><br><br><br>
Select your Academic Year:
<input type="radio" id="1" name="year" value="first" >
<label for="1">First</label>
<input type="radio" id="2" name="year" value="second">
<label for="2">Second</label>
<input type="radio" id="3" name="year" value="third">
<label for="3">Third</label>
<input type="radio" id="4" name="year" value="four">
<label for="4">Fourth</label><br><br><br>
<a href="#" <input class="signup" type="submit" value="Send OTP"><button class="signup">Send OTP</button></a><br><br>
</form>
<form method="post">
<label for="security">OTP:</label>
<input type="text" id="security" name="otp" required placeholder="enter the otp for verification"><br><br><br>
<a href="#" <input class="signup" type="submit" value="Sigh Up"><button class="signup">Sign Up</button></a>
</form>
</div>
</center>
<marquee class="marquee">The Election will be held only between 8 AM to 12 PM. So, hurry up and Represent Yourself!!!</marquee>
</body>
</html>