Advertisement
EconomicSerg

<style> test

Jan 12th, 2021 (edited)
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>
  5.             Web Page
  6.         </title>
  7.     </head>
  8.     <body>
  9.         <style>
  10.             body {
  11.                 background-color: grey;
  12.             }
  13.             h1 {
  14.                 text-align: center;
  15.                 color: white;
  16.             }
  17.             p {
  18.                 text-align: center;
  19.                 color: white;
  20.             }
  21.         </style>
  22.         <h1>
  23.             This is a header
  24.         </h1>
  25.         <p>
  26.             This is a paragraph
  27.         </p>
  28.     </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement