-
Notifications
You must be signed in to change notification settings - Fork 0
/
parcel.html
33 lines (31 loc) · 1.04 KB
/
parcel.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
<!DOCTYPE html>
<html>
<head>
<title>Pracels</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Please fill out the form below: </h1>
<form action="parcel.php">
<div class="form-group">
<label for="length">Enter the length: </label>
<input id="length" name="length" class="form-control" type="text">
</div>
<div class="form-group">
<label for="width">Enter the Width: </label>
<input id="width" name="width" class="form-control" type="text">
</div>
<div class="form-group">
<label for="height">Enter the Height: </label>
<input id="height" name="height" class="form-control" type="text">
</div>
<div class="form-group">
<label for="weight">Enter the Weight: </label>
<input id="weight" name="weight" class="form-control" type="text">
</div>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</body>
</html>