"Student Details"
Bootstrap 4.0.0 Snippet by robertkentish

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend class="col-form-title">Applicant Details</legend>
<!-- Text input-->
<div class="form-group row">
<label class="col-md-4 col-form-label" for="surname">Surname/Family Name</label>
<div class="col-md-4">
<input id="surname" name="surname" type="text" placeholder="Surname" class="form-control input-md" required="">
</div>
</div>
<!-- Text input-->
<div class="form-group row">
<label class="col-md-4 col-form-label" for="preferred_name">Preferred name</label>
<div class="col-md-4">
<input id="preferred_name" name="preferred_name" type="text" placeholder="Preferred name" class="form-control input-md">
</div>
</div>
<!-- Text input-->
<div class="form-group row">
<label class="col-md-4 col-form-label" for="given_names">Given names in full</label>
<div class="col-md-4">
<input id="given_names" name="given_names" type="text" placeholder="Given names" class="form-control input-md" required="">
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.col-form-label {
color: #2A4A8D;
font-family: Lato,"helvetica neue",sans-serif;
}
.col-form-title {
color: #2A4A8D;
font-family: Lato,"helvetica neue",sans-serif;
font-weight: 400;
font-variant: small-caps;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: