Advertisement
KNenov96

Untitled

May 22nd, 2023
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. {% load static %}
  3. <html lang="en">
  4. <head>
  5.     <meta charset="UTF-8">
  6.  
  7.     <title>Bikers List</title>
  8. </head>
  9.  
  10. <body>
  11.  
  12. <style>
  13.     body {
  14.         background-image: url('{% static "images/motorcycle.jpg" %}');
  15.         -webkit-background-size: cover;
  16.         -moz-background-size: cover;
  17.         -o-background-size: cover;
  18.         background-size: cover;
  19.         background-repeat: no-repeat;
  20.     }
  21.     h1 {
  22.         font-size: 80px;
  23.     }
  24. </style>
  25.  
  26. <h1> Bikers List! </h1>
  27. </body>
  28. </html>
  29.  
  30.  
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement