digital-clock
Version:
USE THIS AWESOME DIGITAL CLOCK FOR YOUR WEBSITE THAT CHANGE DEPENDING ON WHAT TIME ZONE YOU/YOUR USER IS IN.
30 lines (25 loc) • 812 B
Markdown
USE THIS AWESOME DIGITAL CLOCK FOR YOUR WEBSITE THAT CHANGE DEPENDING ON WHAT TIME ZONE YOU/YOUR USER IS IN.
`npm i digital-clock`
```html
<div class="digital-clock"></div>
<script src="index.js" type="module"></script>
```
```css
.digital-clock {
font-size: 3em; /*To change the size of the numbers*/
max-width: 250px; /*To change the widt of the clock*/
text-align: center;
border: 2px solid black; /*To change the border around the clock*/
border-radius: 20px; /*To change how round the edges are*/
background-color: white; /*To change the background color of the clock*/
}
```
```javascript
import showTime from "./node_modules/digital-clock/index.js";
setInterval(showTime, 1000);
```