-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.72 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/css/style.css" />
<title>
My clock | A Clock made for the 30 javascript challeng day
</title>
<meta name="description" content="A little Clock for the javascript 30 days challenge ..." />
<meta
property="og:url"
content="https://dev634.github.io/clock/index.html"
/>
<meta property="og:title" content="My Clock" />
<meta property="og:description" content="A little Clock made for the javascript 30 days challenge" />
<meta property="og:type" content="article" />
<meta
property="og:image"
content="https://dev634.github.io/clock/assets/img/clock.png
"
/>
<meta content="My Clock" property="og:site_name" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="640" />
<meta property="og:image:alt" content="A clock" />
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:title"
content="My Clock - Javascript 30 days challenge"
/>
</head>
<body>
<div class="layer"></div>
<div class="clock">
<div class="round"></div>
<div class="roman__number roman__number-twelve">Ⅻ</div>
<div class="roman__number roman__number-three">Ⅲ</div>
<div class="roman__number roman__number-six">Ⅵ</div>
<div class="roman__number roman__number-nine">Ⅸ</div>
<div class="hand hand-hour"></div>
<div class="hand hand-min"></div>
<div class="hand hand-sec"></div>
</div>
<script src="assets/js/index.js"></script>
</body>
</html>