Vivek333

HTML CSS code

Oct 16th, 2024
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Front end html css
  2.  
  3.  
  4.  
  5.  
  6. <!DOCTYPE html>
  7. <html lang="en">
  8. <head>
  9. <meta charset="UTF-8">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <title>Real-time Number Update</title>
  12. <style>
  13. body {
  14. font-family: Arial, sans-serif;
  15. text-align: center;
  16. margin-top: 100px;
  17. }
  18. .number-display {
  19. font-size: 3em;
  20. color: #333;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <h1>Current Number</h1>
  26. <div class="number-display" id="numberDisplay">0000000000</div>
  27.  
  28. <script src="/socket.io/socket.io.js"></script>
  29. <script src="script.js"></script>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment