Skip to content

Instantly share code, notes, and snippets.

@shamdasani
Created November 5, 2016 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shamdasani/4f498bd930d7d36e06891534cd875cb0 to your computer and use it in GitHub Desktop.
Save shamdasani/4f498bd930d7d36e06891534cd875cb0 to your computer and use it in GitHub Desktop.
clock html
<!DOCTYPE html>
<html>
<head>
<title>Clock</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="clock">
<div id="hours"></div>
<div id="minutes"></div>
<div id="seconds"></div>
<div class="three"></div>
<div class="six"></div>
<div class="nine"></div>
<div class="twelve"></div>
<div class="center"></div>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment