File size: 407 Bytes
6a45afe |
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 |
<!DOCTYPE html>
<html>
<head>
<title>Child Cost Estimator</title>
</head>
<body>
<h1>Child Cost Estimator</h1>
<form action="/estimate" method="post">
<input type="text" name="location" placeholder="Location">
<input type="text" name="income" placeholder="Income">
<input type="text" name="family_size" placeholder="Family Size">
<input type="submit" value="Estimate">
</form>
</body>
</html>
|