Posts

Showing posts with the label html

Ball on Colour Grid

Image
 html :  ----------------------------------------------------------------------------------------------------------- <div class="scene">   <div class="grid">     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i><i></i><i></i></i>     <i>...

create analog clock design using html+css

Image
 Certainly! Here's an example of an analog clock design using HTML and CSS: ```html ------------------------------------------------------------------------------------------------------------ <!DOCTYPE html> <html> <head>     <title>Analog Clock</title>     <style>         body {             background-color: #222222;             display: flex;             align-items: center;             justify-content: center;             height: 100vh;         }         .clock {             width: 200px;             height: 200px;             border: 10px solid #FFFFFF;             border-radius: 50%;    ...