- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasterInJavaScript.htm
More file actions
Latest commit
36 lines (27 loc) · 762 Bytes
/
Copy pathEasterInJavaScript.htm
File metadata and controls
36 lines (27 loc) · 762 Bytes
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
<!doctype html>
<htmllang="en">
<head>
<metacharset="utf-8">
<title>Calulate the date of Easter</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>Calculate the Date of Easter</h1>
<scriptsrc="src/EasterCalcs.js" type="text/javascript"></script>
<formname="UserInput">
Enter a year from AD 326 to AD 4099 ... <inputname="YearEntry"
type="text" value="2000"><inputtype="button"
value="Show Easters" onclick="ShowEasters(UserInput.YearEntry.value)"
id="button1" name="button1">
</form>
<div>
<p> </p>
<pid="dateOutputW"> </p>
<pid="dateOutputO"> </p>
<pid="dateOutputJ"> </p>
<p> </p>
</div>
</body>
</html>