-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDate_Field_with_Calendar_test.html
More file actions
59 lines (53 loc) · 2.05 KB
/
Date_Field_with_Calendar_test.html
File metadata and controls
59 lines (53 loc) · 2.05 KB
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
53
54
55
56
57
58
59
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>Date Field with Calendar test</TITLE>
<META NAME="Generator" CONTENT="TextPad 4.6">
<META NAME="Author" CONTENT="?">
<META NAME="Keywords" CONTENT="?">
<META NAME="Description" CONTENT="?">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="calendar.js"></script>
<style>
.tbl-row {
background-color: white;
color:brown;
}
.tbl-row:hover {
background-color: yellow;
color: red;
}
.th {
color:yellow;
background-color: #cc0000;
}
.cal {
position: relative;
width:238px;
left: 270px;
top: 35px;
}
option.red {background-color: #FF4500;}
</style>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#800000" ALINK="#FF00FF" BACKGROUND="?">
<p>
First Name:<input id="firstnm" type="text" placeholder="First Name" maxlength=30></input>
<input id="lastnm" type="text" placeholder="Last Name" maxlength=30></input><br>
Addr Line1:<input id="addrln1" type="text" placeholder="Addr Line1" maxlength=30></input><br>
Addr Line2:<input id="addrln2" type="text" placeholder="Addr Line2" maxlength=30></input><br>
City:<input id="city" type="text" placeholder="city" maxlength=20></input><br>
State:<input id="state" type="text" placeholder="state" maxlength=2></input><br>
zip code:<input id="zipcode" type="text" placeholder="zipcode" maxlength=10></input><br>
Enter Birth Date :<input id="birthdt" type="text" placeholder="MM/DD/YYYY" maxlength=10></input>
<a href="#" onclick="Make_Calendar_def()">
<span class="glyphicon glyphicon-calendar"></span>
</a>
<div id="Calendar" class="cal" align="left"></div>
<input type="button" value="submit"></input>
</p>
</BODY>
</HTML>