-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
26 lines (25 loc) · 1.02 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<form method="post">
<table>
<tr>
<td><label class="control-label" for="date">Select Start Date</label></td>
<td><label class="control-label" for="date">Select End Date</label></td>
</tr>
<tr>
<td><input class="form-control" id="date" name="date" placeholder="MM/DD/YYY" style="width: 100%;"/></td>
<td><input class="form-control" id="date" name="date" placeholder="MM/DD/YYY" style="width: 100%;"/></td>
</tr>
</table>
</form>
</body>
</html>