-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
45 lines (43 loc) · 1.85 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<title>Innerve-2021</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link href="formcss.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="main-block">
<div class="left-part">
<i class="fas fa-graduation-cap"></i>
<h1>Register for our technical fest</h1>
<p>The two-day extravaganza has witnessed a phenomenol gathering of students from all domains.</p>
<div class="btn-group">
<a class="btn-item" href="https://innerve-igdtuw.github.io/Innerve-IGDTUW-2020/landing.html">Go to Homepage</a>
</div>
</div>
<form action="/">
<div class="title">
<i class="fas fa-pencil-alt"></i>
<h2>Register here</h2>
</div>
<div class="info">
<input class="fname" type="text" name="name" placeholder="Full name">
<input type="text" name="name" placeholder="Email">
<input type="text" name="name" placeholder="Phone number">
<input type="password" name="name" placeholder="College Name">
<select>
<option value="course-name" selected>Course name*</option>
<option value="CSE">CSE</option>
<option value="IT">IT</option>
<option value="ECE">ECE</option>
<option value="MAE">MAE</option>
<option value="M.Tech">M.Tech</option>
<option value="Others">Others</option>
</select>
</div>
<button type="submit" href="/">Submit</button>
</form>
</div>
</body>
</html>