index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>css-3d-progress</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <script defer src="https://unpkg.com/css-3d-progress@0.0.3/css-3d-progress.js"></script> <style> body { margin: 0; height: 100vh; display: grid; place-items: center; background-color: #d0d0d0; } </style> </head> <body> <div style="width: 20em"> <css-3d-progress percent="50"></css-3d-progress> </div> </body> </html> |