Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.  
  6.     <meta charset="utf-8">
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     <meta name="description" content="">
  10.     <meta name="author" content="">
  11.  
  12.     <title>title</title>
  13.  
  14.     <!-- Bootstrap Core CSS -->
  15.     <link href="css/bootstrap.min.css" rel="stylesheet">
  16.  
  17.     <style>
  18.     .video {
  19.         position: relative;
  20.         width: 80%;
  21.         margin: 0 auto;
  22.     }
  23.  
  24.     .video .glyphicon {
  25.         position: absolute;
  26.         top: 50%;
  27.         transform: translateY(-50%);
  28.     }
  29.  
  30.     .video .glyphicon-menu-left { left: -36px }
  31.     .video .glyphicon-menu-right { right: -36px }
  32.  
  33.     @media (min-width: 768px) {
  34.  
  35.         .video {
  36.             width: auto;
  37.             margin: auto;
  38.         }
  39.  
  40.     }
  41.     </style>
  42.  
  43. </head>
  44.  
  45. <body>
  46.     <!-- Page Content -->
  47.     <div class="container">
  48.         <div class="row">
  49.             <div class="col-lg-12 text-center">
  50.                 <h1>ADVERTISEMENT</h1>
  51.             </div>
  52.         </div>
  53.         <hr>
  54.         <div class="row">
  55.             <h2>Some very nice Title!</h2>
  56.             <div class="col-sm-8 col-md-offset-2 text-center video">
  57.  
  58.                 <h1><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span></h1>
  59.  
  60.                 <div class="embed-responsive embed-responsive-16by9">
  61.                      <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/zpOULjyy-n8"></iframe>
  62.                 </div>
  63.  
  64.                 <h1><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></h1>
  65.                 <h3>Some very nice description about the video...</h3>
  66.  
  67.             </div>
  68.         </div>
  69.     </div>
  70.     <!-- /.row -->
  71.     <!-- jQuery Version 1.11.1 -->
  72.     <script src="js/jquery.js"></script>
  73.  
  74.     <!-- Bootstrap Core JavaScript -->
  75.     <script src="js/bootstrap.min.js"></script>
  76.  
  77. </body>
  78.  
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement