"Registration Form"
Bootstrap 3.0.0 Snippet by Ashwani Rawat

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 ---------->
<!doctype html>
<html lang="en">
<head>
<title>Form</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="css/style.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="registraion-form">
<div class="form-head">
<h1>Form</h1>
</div>
<div class="team-div">
<div class="team">
<div class="team-name"> Team Name </div>
<div class="team-input">
<input type="text"/>
</div>
</div>
</div>
<div class="team-div">
<div class="team">
<div class="team-name"> Coach Name </div>
<div class="team-input">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
*{margin:0; padding:0;}
body{ font-size:16px !important;}
.wrapper{ float:left; width:100%;}
.registraion-form{float:left;width:100%;border: 1px solid;margin-top: 50px;padding-bottom: 20px;}
.form-head h1{margin: 0;text-align: center;font-size: 30px;padding: 5px 0;}
.form-head{float:left;width:100%;border-bottom: 1px solid;}
.team-div{float:left;width:100%;padding-left: 10px;}
.team{float:left;width:50%;=: 10px}
.team input{outline: none;border: none;border-bottom: 1px solid;/* margin-left: 50px; */width: 60%;}
.team-member{float:left;width: 33.5%;padding-left:10px;margin-top:10px;}
.text-team h6{ margin:0; }
.text-team span{font-size: 14px;}
.text-team{ float:left; width:50%; }
.numeric-team{ float:right; width:50%;}
.team-name{float:left;width: 30%;}
.team-input{float:right;width: 70%;}
.participant{ float:left; width:100%; margin-bottom:30px;}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: