DEV Community

developer
developer

Posted on • Updated on

How to make a clock using html , JavaScript and CSS and deploy it using firebase

HTML

<div class="container"><div id="clock"></div></div>

CSS

`*{
margin: 0px;
padding: 0px;
}

.container{
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(67, 66, 66);
}

clock{

font-size: 5vw;
font-family: orbitron;
background-color: rgb(16, 16, 16);
border: 1vw solid black;
color: green;
width: 30vw;
height: 20vh;
display: flex;
align-items: center;
justify-content: center;
Enter fullscreen mode Exit fullscreen mode

}
@media(max-width:800px)and (orientation:portrait){
#clock{
width: 98vw;
height: 25vh;
font-size: 18vw;
}
}

@media(max-width:786px)and (orientation:landscape){
#clock{
width: 98vw;
height: 50vh;
font-size: 18vw;
}
}

JS

` function Clock(){
let d= new Date();
hours = d.getHours()
minutes = d.getMinutes()
seconds = d.getSeconds()
document.getElementById('clock').innerText = hours + ':' + minutes + ':' + seconds;
}

Clock()

setInterval(()=>{Clock()},1000)`
Enter fullscreen mode Exit fullscreen mode

`

Top comments (1)

Collapse
 
mince profile image
Mince

Where did you explain it and where did you deploy it. Does not make sense