-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
52 lines (52 loc) · 992 Bytes
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Baby Calc</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
body {font: 1em/1 sans-serif;}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td>period</td>
<td><input type="date" id="begin"></td>
</tr>
<tr>
<td>conception</td>
<td id="conception"></td>
</tr>
<tr>
<td>so far</td>
<td id="sofar"></td>
</tr>
<tr>
<td>to go</td>
<td id="togo"></td>
</tr>
<tr>
<td>due</td>
<td id="due"></td>
</tr>
<tr>
<td>on</td>
<td><input type="date" id="on"></td>
</tr>
<tr>
<td>will be</td>
<td id="onsofar"></td>
</tr>
<tr>
<td>to go</td>
<td id="ontogo"></td>
</tr>
</tbody>
</table>
<script src="babycalc.js"></script>
</body>
</html>