Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 20, 2021 02:27 pm GMT

Digital Clock Using HTML, CSS & JS.

Source Code:

HTML:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>JS Digital Clock</title></head><body>    <div id="clock">        <h1 id="time">        </h1>    </div></body></html>

CSS Code:

 *{            margin: 0;            padding: 0;            box-sizing: border-box;        }        #clock{            height: 20vh;            width: 40vw;            background-color: rgb(125, 202, 202);            position: fixed;            margin: auto;            top: 0;            bottom: 0;            left: 0;            right: 0;            text-align: center;            box-shadow: 8px 8px 16px #cddce1,                        -8px -8px 16px #cddce1;        }        h1{            font-size: 90px;            font-family: sans-serif;            text-align: center;            margin-top: 15px;            text-shadow: 4px 3px 0 #fff, 9px 8px 0 rgba(0, 0, 0, 0.15);        }

JavaScript Code:

   var myVar=setInterval(myTimer, 1000);    function myTimer(){        var a=new Date();        document.getElementById("time").innerHTML=a.toLocaleTimeString();    }

Find Me On:



Facebook
Youtube
Github


Original Link: https://dev.to/technicalvandar885/digital-clock-using-html-css-js-5l3

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To