forked from PraveenRaj1833/techtable_task2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
60 lines (60 loc) · 2.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Mentor Form</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="formbody">
<h5 class="text-center" style="color:white;"><b>Fill the Form to Join as a Mentor</b></h5>
<form class="m-5">
<div class="form-group row">
<label for="name" class="col-sm-2 col-form-label" style="color:white;">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="name" placeholder="Enter Your Name">
</div>
</div>
<div class="form-group row">
<label for="mail" class="col-sm-2 col-form-label" style="color:white;">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="phone" class="col-sm-2 col-form-label" style="color:white;">Mobile</label>
<div class="col-sm-10">
<input type="tel" class="form-control" id="phone" placeholder="Mobile Number">
</div>
</div>
<div class="form-group row">
<label for="college" class="col-sm-2 col-form-label" style="color:white;">College Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="college" placeholder="College Name">
</div>
</div>
<div class="form-group row">
<label for="year" class="col-sm-2 col-form-label" style="color:white;">Year Of Graduation</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="year" placeholder="Year Of Graduation">
</div>
</div>
<div class="form-group row">
<label for="domain" class="col-sm-2 col-form-label" style="color:white;">Domain Of Expertise</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="domain" placeholder="Domain Of Expertise">
</div>
</div>
<div class="form-group row">
<label for="work" class="col-sm-2 col-form-label" style="color:white;">Share Some of Your work</label>
<div class="col-sm-10">
<textarea class="form-control" id="work" placeholder="Share Some of Your work"></textarea>
</div>
</div>
</form>
<div class="text-center">
<button type="submit" class="btn btn-primary align-center">Submit</button>
</div>
</div>
</body>
</html>