-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproj2.html
79 lines (75 loc) · 3.61 KB
/
proj2.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
<html>
<head>
<title>Survey form</title>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<style>
label,h1
{
color:#0d304c;
}
p{
color:#1c527f;
}
#main{
border: 1px solid #1c527f;
border-radius:10px;
margin:200px;
padding:50px;
display:block;
background-color:rgb(195, 214, 229);
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);}
input[type="submit"]
{
background-color:#1c527f;
border-radius:20px;
padding:10px;
color:white;
}
</style>
</head>
<body>
<div id="main">
<h1 id="title"> Internship Application </h1>
<p id="description"> Please fill in the details </p><hr>
<form id="survey-form" class="form-horizontal">
<div class="form-group has-success has-feedback">
<label id="name-label" class="control-label">Name</label>
<input type="text" id="name" class="form-control" placeholder="Enter your name" required=""></div>
<div class="form-group has-success has-feedback">
<label id="email-label" class="control-label">Email</label>
<input type="email" id="email" class="form-control" placeholder="Enter your email" required="">
</div><div class="form-group"><label id="number-label">Work Experience</label>
<input type="number" id="number" min="1" max="9" class="form-control" placeholder="years of experience 1-9">
</div><div class="form-group">
<label> City: </label>
<select id="dropdown" class="form-control">
<option value="bangalore">Bangalore</option>
<option value="mumbai"> Mumbai </option>
<option value="delhi"> Delhi </option>
<option value="chennai"> Chennai </option>
</select>
</div><div class="form-group" class="form-control">
<label> Internship choice: </label>
<input type="radio" name="ch" value="office"> In-office Internship
<input type="radio" name="ch" value="home"> Work from home
</div><div class="form-group" style="text-align:justify; padding-left:10px;">
<label> Category:</label><br>
<div style="padding-left:50px;">
<input type="checkbox" value="AI"> Artificial Intelligence<br>
<input type="checkbox" value="BD"> Big Data<br>
<input type="checkbox" value="CC"> Cloud Computing<br>
<input type="checkbox" value="DE"> Data Entry<br>
<input type="checkbox" value="WEB"> Web Development<br>
</div> </div> <div class="form-group"><label> Why should we hire you for this internship? </label><br>
<textarea rows="4" cols="100" class="form-control"></textarea><br></div>
<input id="submit" type="submit" value="Submit Details"><br>
</form>
</div>
</body>
</html>