background.html 431 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Фон</title>
  6. <style>
  7. body {
  8. background: url(/Romanenko HW2/images/donut.png) 90% 90% no-repeat fixed,
  9. url(/Romanenko HW2/images/lamp.png) 40% 40% no-repeat fixed,
  10. url(/img/grace.png) no-repeat fixed;
  11. background-size: auto, auto, cover; /* Меняем масштаб */
  12. }
  13. </style>
  14. </head>
  15. <body></body>
  16. </html>