DESIGN OF A WORKING CLOCK USING HTML AND C.S.S PART:-7
DESIGN OF A WORKING CLOCK HI Let Work with Animation. Today we are working on simple and easy animation. Have You Seen a Clock?. Stupid Question right! Let make a Clock and give a beautiful design of it. And we gonna give a beautiful background beside the clock.. MORE BLOGS AT:- https://darkwriter17.blogspot.com Let Start The Program.... <!DOCTYPE html> <html> <head> <title>analog clock</title> <style> .clock{ margin:0; padding: 12px; width: 520px; height: 500px; border-radius: 20%; border-color: black; border:0px; border-style: double; //background-color:HotPink; margin-left: 35%; margin-top: 9%; } .time{ width: 50px; height: 500px; position: absolute; transform-origin: 0%,100%; margin-left:230px; //border:1px solid; font-family: LUCIDA HANDWRITING; font-weight: bold; color:yellow ; } #one{ transform: rotate(30deg); } #two{ transform: rotate(60deg); ...