-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 735 Bytes
/
Copy pathindex.html
File metadata and controls
19 lines (19 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Binary clock</title>
<meta name="description" content="Binary clock">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="assets/css/binary-clock.css">
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="assets/js/binary-clock.js"></script>
<script>
binary_clock.init();
</script>
</body>
</html>