-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap6.html
39 lines (30 loc) · 905 Bytes
/
bootstrap6.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
<!--
Inline Forms
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<meta charset="utf-8">
<title>Inline Forms</title>
</head>
<body>
<div class="container-fluid">
<form role="form" class="form-inline">
<div class="form-group">
<label>Enter your Name</label>
<input type="text" placeholder="enter your name" class="form-control" name="">
</div>
<div class="form-group">
<label>Enter your Email</label>
<input type="text" placeholder="enter your Email" class="form-control" name="">
</div>
<div class="form-group">
<label>Enter your Contact</label>
<input type="text" placeholder="enter your contact" class="form-control" name="">
</div>
<input type="submit" value="click" class="btn btn-success" name="">
</form>
</div>
</body>
</html>