-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
20 lines (20 loc) · 879 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Canvas Clock</title>
<meta name="description" content="Beautiful Canvas Clock">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<canvas id="canvas"></canvas><br>
<span>by <a href="https://www.ganeshkumarm.me" target="_blank">Ganesh Kumar Marimuthu</a> ☺</span>
<script src="js/draw_component.js"></script>
<script src="js/script.js"></script>
</body>
</html>