forked from jasisk/calendeer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkup.html
More file actions
26 lines (25 loc) · 800 Bytes
/
markup.html
File metadata and controls
26 lines (25 loc) · 800 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
<html>
<head>
<script src="javascripts/jquery-1.7.2.min.js"></script>
<script src="javascripts/sugar-1.3.min.js"></script>
<script src="javascripts/utils.js"></script>
<script src="javascripts/month.js"></script>
<script src="javascripts/day.js"></script>
<script src="javascripts/calendeer.js"></script>
<link rel="stylesheet" href="stylesheets/calendeer.css" type="text/css" />
<style type="text/css">
#start.calendeer-focused-input {
background-color: #e39937;
}
#end.calendeer-focused-input {
background-color: #3bd521;
}
</style>
</head>
<body>
<input type="text" id="start">
<input type="text" id="starttime"><br />
<input type="text" id="end">
<input type="text" id="endtime">
</body>
</html>