-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 868 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>SNOEP timer</title>
<meta name='description' content='SNOEP timer'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link id='favicon' href='assets/img/icon-alarm.png' rel='icon' type='image/x-icon'>
<link href='dist/snoepTimer.min.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div class='snoepTimer__container'>
<span class='snoepTimer__periodType'></span>
<time class='snoepTimer'>00:00</time>
<div class='snoepTimer__header'>
<img class='snoepTimer__logo' src='assets/img/icon-alarm.png' alt='SnoepTimer' />
</div>
</div>
<script src='dist/snoepTimer.min.js'></script>
<script>snoepTimer();</script>
</body>
</html>