36 lines
729 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timestamp</title>
<style>
body {
background-color: #333;
}
.clock {
font-size: 4em;
text-align: center;
margin: 200px auto;
color: yellow;
font-family: Arial;
}
.clock span {
padding: 20px;
background: #444;
}
</style>
</head>
<body>
<div class="clock"></div>
<script src="digital_clock.js"></script>
</body>
</html>