-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (23 loc) · 929 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Circular countdown</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/countdown.css">
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon">
<script src="https://kit.fontawesome.com/b32c38a463.js" crossorigin="anonymous"></script>
</head>
<body>
<span class="github">
<a href="https://github.com/LucaCuello/CircularCountdownTemplate" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</span>
<div class="countdown-container" data-duration="60" data-transition="linear" data-color="#c39fe0" data-size="500"
data-position="right"></div>
<script src="js/index.js"></script>
</body>
</html>