-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 912 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
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<title>paper-checklist</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="paper-checklist.html">
<link rel="stylesheet" href="styles.css">
</head>
<body unresolved>
<div class="horizontal-section-container">
<div>
<h4>Paper-Checklist</h4>
<div class="horizontal-section">
<paper-checklist>
<ul>
<li>AC</li>
<li>CD</li>
<li>DE</li>
</ul>
</paper-checklist>
</div>
</div>
</div>
<script>
document.querySelector('paper-checklist').checklistData = ['ABC', 'BCD', 'CDE'];
</script>
</body>
</html>