Advertisement
EdmundC

test

Oct 6th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Test Page</title>
  7.     <style>
  8.         body {
  9.             display: flex;
  10.             justify-content: center;
  11.             align-items: center;
  12.             height: 100vh;
  13.             margin: 0;
  14.             font-family: Arial, sans-serif;
  15.             background-color: #f0f0f0;
  16.         }
  17.         h1 {
  18.             font-size: 2em;
  19.             color: #333;
  20.         }
  21.     </style>
  22. </head>
  23. <body>
  24.     <h1>THIS IS A TEST</h1>
  25. </body>
  26. </html>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement