forked from yodasw16/date-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 969 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
<html>
<head>
<title>Date Picker Demo</title>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<link href="main.css" rel="stylesheet">
</head>
<body>
<header><h1>Totally Rad Date Picker Demo!</h1></header>
<div role="main" class="group">
<p><a href="https://github.com/quickenloans/date-picker">Fork it!</a></p>
<form>
<label>Date</label>
<input type="text" id="datePicker">
<input type="submit" value="submit">
</form>
</div>
<footer>
<a href="http://devtroit.com" title="Developed in Detroit">
<img src="icons/badge-medium.png" alt="Developed in Detroit">
</a>
</footer>
<script src="jquery-1.7.1.min.js"></script>
<script src="datePicker.js"></script>
</body>
</html>