-
Notifications
You must be signed in to change notification settings - Fork 1
/
registration.html
44 lines (40 loc) · 1.51 KB
/
registration.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
<!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>
<link rel="stylesheet" href="prajwalan.css">
</head>
<body>
<section class="main">
<nav>
<div class="logo">
<div class="logoimg"><img src="./images/logo/gcoea.png" alt="" height="58px" filter="grayscale(100%)"></div>
<div class="gcoea">Government College Of Engineering Amravati</div>
</div>
<ul class="nav-links">
<li><a href="#">About</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">News</a></li>
<li class="register"><a href="#">Register</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<form id="registration-form">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Register">
</form>
</section>
</body>
</html>