-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 785 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 785 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clock Digital Hands</title>
<link rel="stylesheet" href="main.css" />
<meta name="robots" content="index, follow">
<meta property="og:title" content="Clock Digital Hands" />
<meta
property="og:description"
content="A simple clock with digital hands."
/>
<meta name="author" content="Tymon Woźniak" />
<meta
name="keywords"
content="clock, digital, hands, time, canvas, html, analog, digits, funny"
/>
</head>
<body>
<canvas width="400" height="400"
>Your browser doesn't support canvas.</canvas
>
<script src="main.js"></script>
</body>
</html>