D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
JacksonTian
Full window
Github gist
offline web application
<!DOCTYPE HTML> <html manifest="clock.appcache"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="format-detection" content="telephone=no" /> <title>Clock</title> <link rel="stylesheet" href="clock.css"> </head> <body> <p>The time is: <output id="clock"></output></p> <script src="clock.js"></script> </body> </html>