Posts

Showing posts from September, 2020

Clock In HTML , CSS and JavaScript

 Create an Analog Clock Using HTML, CSS and JavaScript :- For Image and Audio:-  https://drive.google.com/drive/folders/1XEdAR2IjqpoiNg7IJwiNCP6Yqn_nR6kC?usp=sharing Source Code :- HTML and JS :- <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Clock</title>     <link rel="stylesheet" href="style.css"> </head> <body>     <div class="container">         <div class="clock">             <div class="outer-circle">                 <img src="clock.png" alt="">                 <div class="inner-circle">                     <div class="clock-hand">     ...