Advertisement
Guest User

index.html

a guest
Apr 25th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. * {
  6. box-sizing: border-box;
  7. }
  8.  
  9. .col-container {
  10. display: table;
  11. width: 100%;
  12. }
  13. .col {
  14. display: table-cell;
  15. padding: 16px;
  16. }
  17.  
  18. @media only screen and (max-width: 600px) {
  19. .col {
  20. display: block;
  21. width: 100%;
  22. }
  23. }
  24. </style>
  25. </head>
  26. <body>
  27.  
  28.  
  29. <div><h2>Bienvenue sur l’intranet
  30. ADM du Lab ASR</h2></div>
  31. <p>J'ai été crée pour etre responsive design malgré mon design très sobre puisque le temps manquait...</p>
  32.  
  33. <div class="col-container">
  34. <div class="col" style="background:blue">
  35. <h2 style="color:white">Hello</h2>
  36. <p style="color:white">World</p>
  37. </div>
  38.  
  39. <div class="col" style="background:white">
  40. <h2>Raphael</h2>
  41. <p>Hello World!</p>
  42. <p>Hello World!</p>
  43. <p>Hello World!</p>
  44. <p>Hello World!</p>
  45. </div>
  46.  
  47. <div class="col" style="background:red">
  48. <h2 style="color:white">Lorem Ipsum</h2>
  49. <p style="color:white">texte latin...</p>
  50. <p style="color:white">encore du texte latin...</p>
  51. </div>
  52. </div>
  53.  
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement