-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 2.62 KB
/
Copy pathindex.html
File metadata and controls
50 lines (48 loc) · 2.62 KB
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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Countdown Christmas Day</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./dist/style.css">
<link href="https://fonts.googleapis.com/css?family=Cookie" rel="stylesheet">
<style>.bmc{padding:16px;text-align:center}.bmc-button{display:inline-flex;background-color:#ff813f;border-radius:5px;-webkit-box-shadow:0 1px 2px 2px rgba(190,190,190,.5);box-shadow:0 1px 2px 2px rgba(190,190,190,.5);-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Cookie,cursive;font-size:20px;color:#fff;letter-spacing:.6px;line-height:22px;padding:4px 8px 4px 6px;text-decoration:none}.bmc-button:active,.bmc-button:focus,.bmc-button:hover{-webkit-box-shadow:0 1px 2px 2px rgba(190,190,190,.8);box-shadow:0 1px 2px 2px rgba(190,190,190,.8);opacity:.85}.bmc-button img{height:22px}</style>
</head>
<body>
<main class="container">
<div class="card">
<div class="card__body">
<h2 class="card__title">
Countdown to Christmas Day
</h2>
<div class="countdown__section">
<div id="days" class="value">00</div>
<div class="countdown__label">DAYS</div>
</div>
<div class="countdown__section">
<div id="hours" class="value">00</div>
<div class="countdown__label">HOURS</div>
</div>
<div class="countdown__section">
<div id="minutes" class="value">00</div>
<div class="countdown__label">MINUTES</div>
</div>
<div class="countdown__section">
<div id="seconds" class="value">00</div>
<div class="countdown__label">SECONDS</div>
</div>
</div>
<!-- Buy me a beer -->
<footer class="bmc">
<a class="bmc-button" target="_blank" href="https://www.buymeacoffee.com/riccardo">
<img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a Beer">
<span style="margin-left:5px">
Buy me a Beer
</span>
</a>
</footer>
</div>
</main>
<script src="./dist/script.js"></script>
</body>
</html>