Advertisement
Guest User

HTML

a guest
Apr 21st, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Responsive</title>
  8.     <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11.     <section class="main-section">
  12.         <div class="container">
  13.             <div class="row">
  14.                 <div class="col-2-3">
  15.                     <h3>Lijeva stavka 1</h3>
  16.                     <p>
  17.                         Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
  18.                     </p>
  19.                 </div>
  20.                 <div class="col-1-3">
  21.                     <h3>Desna stavka 1</h3>
  22.                     <p>bla bla bl...</p>
  23.                 </div>
  24.             </div><!--red 1-->
  25.             <div class="row">
  26.                 <div class="col-2-3">
  27.                     <h3>Lijeva stavka 2</h3>
  28.                     <p>
  29.                      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's                   standard dummy text ever since the 1500s,
  30.                     </p>
  31.                 </div>
  32.                 <div class="col-1-3">
  33.                     <h3>Desna stavka 2</h3>
  34.                     <p>bla bla bl...</p>
  35.                 </div>
  36.             </div><!--red 2-->
  37.             <div class="row">
  38.                 <div class="col-2-3">
  39.                     <h3>Lijeva stavka 3</h3>
  40.                     <p>
  41.                         Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
  42.                     </p>
  43.                 </div>
  44.                 <div class="col-1-3">
  45.                     <h3>Desna stavka 3</h3>
  46.                     <p>bla bla bl...</p>
  47.                 </div>
  48.             </div><!--red 3-->
  49.         </div>
  50.     </section>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement