Guest User

Untitled

a guest
Apr 3rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.51 KB | None | 0 0
  1. <!doctype html>
  2. <html class="no-js" lang="">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta http-equiv="x-ua-compatible" content="ie=edge">
  6.         <title>Moja strona</title>
  7.         <meta name="description" content="">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1">
  9.         <style>
  10.             .container {
  11.                 max-width: 1300px;
  12.                 margin: 0 auto;
  13.                 background: #333;
  14.                 border: 2px solid green;
  15.                 color: #fff;
  16.                 padding: 0 20px;
  17.             }
  18.  
  19.             .embed-wrapper {
  20.                 max-width: 70%;
  21.                 margin: 0 auto;
  22.                 background: grey;
  23.                 border: 2px solid rgb(0, 0, 255);
  24.                 position: relative;
  25.                 padding-bottom: 56.25%; /* 16:9 */
  26.                 padding-top: 25px;
  27.                 height: 0;
  28.             }
  29.  
  30.             .embed-wrapper iframe {
  31.                 position: absolute;
  32.                 top: 0;
  33.                 left: 0;
  34.                 width: 100%;
  35.                 height: 100%;
  36.             }
  37.  
  38.         </style>
  39.     </head>
  40.     <body>
  41.         <div class="container">
  42.             <p>Tytuł:</p>
  43.             <p>Opis:</p>
  44.             <div class="embed-wrapper">
  45.                 <iframe width="560" height="315" src="https://www.youtube.com/embed/fR-7E12ppDg" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
  46.             </div>
  47.         </div>
  48.     </body>
  49. </html>
Add Comment
Please, Sign In to add comment