Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>clock</title>
- <style>
- #clock { position:relative;width:300px;height:300px; }
- #clock img { position:absolute;top:0;left:0; }
- #digital { width:300px; height:20px; text-align:center; }
- }
- </style>
- </head>
- <body>
- <div id="clock">
- <img src="http://webskills.kr/images/etc/clock.png">
- <img id="hour" src="http://webskills.kr/images/etc/h.png">
- <img id="munite" src="http://webskills.kr/images/etc/m.png">
- <img id="second" src="http://webskills.kr/images/etc/s.png">
- </div>
- <div id="digital"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment