-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.39 KB
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Calendario — printable calendar</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css" />
<link rel="stylesheet" href="calendario.css" />
<link rel="stylesheet" href="control.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.4.0/svg.min.js"></script>
</head>
<body>
<div data-behavior="control-panel" class="control-panel">
<input data-input="image-url" placeholder="Image URL" type="text" name="image" />
<button data-action="previous-month" class="button button-outline button-small">Previous</button>
<button data-action="next-month" class="button button-outline button-small">Next</button>
</div>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="210mm" height="297mm"></svg>
<script src="calendario.js"></script>
<script src="control-panel.js"></script>
</body>
</html>