"Appointment Form Design"
Bootstrap 4.1.1 Snippet by Nabed

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.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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 ---------->
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<title>Form Design</title>
</head>
<body>
<!-- Form Design Start-->
<section class="form pt-5 pb-5">
<div class="container">
<div class="row">
<div class="offset-md-2 col-md-8">
<div class="heading">
<h1>Appointment</h1>
</div>
<div class="row">
<div class="col-md-6">
<input type="text" placeholder="First Name">
</div>
<div class="col-md-6">
<input type="text" placeholder="Last Name">
</div>
</div>
<div class="row">
<div class="col-md-6">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.form{
background-color: #3CD8C1;
position: relative;
}
.heading{}
input[type="text"] {
border: none;
width: 100%;
padding: 10px;
margin-bottom: 10px;
outline: none;
}
input[type="phone"]{
border: none;
width: 100%;
padding: 10px;
margin-bottom: 10px;
outline: none;
}
input[type="date"]{
border: none;
width: 100%;
padding: 10px;
margin-bottom: 10px;
}
input[type="date"]:focus {
outline: none;
}
textarea {
border: none;
width: 100%;
padding: 10px;
margin-bottom: 10px;
outline: none;
}
input[type="button"] {
border: none;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: