-
Notifications
You must be signed in to change notification settings - Fork 2
/
try.html
29 lines (23 loc) · 988 Bytes
/
try.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<title>try!</title>
</head>
<body>
<form>
<div class="form-group" style="width:300px; margin:20px 50px;">
<label for="state">State</label>
<input type="text" class="form-control" id="State" placeholder="Enter State">
</div>
<div class="form-group" style="width:300px ; margin:20px 50px;">
<label for="state">District</label>
<input type="text" class="form-control" id="District" placeholder="Enter District">
</div>
<button type="submit" style=" margin:20px 50px;" class="btn btn-primary">Submit</button>
</form>
</body>
</html>