-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 821 Bytes
/
index.html
File metadata and controls
23 lines (21 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Countdown Timer</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js" async></script>
<link href="elements/timer.html" rel="import" async>
<style>
body { text-align: center;}
</style>
</head>
<body fullbleed unresolved>
<h1>Countdown Timer</h1>
<p>Easy to use custom element built in polymer to create a countdown timer.<br>
Confirms time past by comparing timestamps and not interval alone.</p>
<p>Fork it on <a href="https://github.com/Boo-urns/polymer-countdown-timer">Github</a>.</p>
<countdown-timer minutes="55" seconds="30"></countdown-timer>
<countdown-timer minutes="50"></countdown-timer>
</body>
</html>