"Form Design- Sample"
Bootstrap 3.0.0 Snippet by jeevan123456

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<div class"form-Sektions">
<div class="container">
<div class="col-md-3 col-sm-3 col-xs-3 hidden-xs hidden-sm">
<h2>Form Design <small>different form elements</small></h2>
</div>
<div class="col-md-9 col-sm-9 col-xs-9">
<div class="site_panel">
<div class="site_title">
<h2>Form Design <small>different form elements</small></h2>
<div class="clearfix"></div>
</div>
<div class="site_content">
<br>
<form id="registration-form" data-parsley-validate="" class="form-horizontal form-label-left" >
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="first-name">First Name <span class="required">*</span>
</label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input id="first-name" required="required" class="form-control col-md-7 col-xs-12" type="text">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="last-name">Last Name <span class="required">*</span>
</label>
<div class="col-md-6 col-sm-6 col-xs-12">
<input id="last-name" name="last-name" required="required" class="form-control col-md-7 col-xs-12" type="text">
</div>
</div>
<div class="form-group">
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
/* Generic CSS */
body {
background-color :#edecea;
font-family: 'Roboto';font-size: 15px;
}
.site_panel {
width: 100%;
padding: 10px 17px;
display: inline-block;
background: #fff;
border: 1px solid #E6E9ED;
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
column-break-inside: avoid;
opacity: 1;
transition: all .2s ease;
margin-bottom: 10px;
position: relative;
box-sizing: border-box;
}
.site_title {
border-bottom: 2px solid #E6E9ED;
padding: 1px 5px 6px;
box-sizing: border-box;
margin-bottom: 10px;
display: block;
}
.site_title h2 {
margin: 5px 0 6px;
float: left;
display: block;
overflow: hidden;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
Color : #edecea ,
Font : font-family: 'Roboto';font-size: 22px;
Heading :
Sektions :
Icons :
Images :
btns :
column hidden : hidden-xs hidden-sm
body font : <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: