Advertisement
mrihavenoideapls

Home Page format

Mar 6th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.42 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta name="viewport" content="width=device-width, initial-scale=1">
  4. <style>
  5. * {box-sizing: border-box;}
  6.  
  7. body {
  8.   background-image: claret.jpg;
  9.   margin: 0;
  10.   font-family: Arial;
  11. }
  12.  
  13. .header {
  14.   overflow: hidden;
  15.   background-color: red;
  16.   padding: 20px 10px;
  17. }
  18.  
  19. .header a {
  20.   float: left;
  21.   color: black;
  22.   text-align: center;
  23.   padding: 12px;
  24.   text-decoration: none;
  25.   font-size: 18px;
  26.   line-height: 25px;
  27.   border-radius: 4px;
  28. }
  29.  
  30. .header a.logo {
  31.   font-size: 25px;
  32.   font-weight: bold;
  33. }
  34.  
  35. .header a:hover {
  36.   background-color: #ddd;
  37.   color: black;
  38. }
  39.  
  40. .header a.active {
  41.   background-color: dodgerblue;
  42.   color: white;
  43. }
  44.  
  45. .header-right {
  46.   float: right;
  47. }
  48.  
  49. @media screen and (max-width: 500px) {
  50.   .header a {
  51.     float: none;
  52.     display: block;
  53.     text-align: left;
  54.   }
  55.   .header-right {
  56.     float: none;
  57.   }
  58. }
  59. </style>
  60. </head>
  61. <body>
  62.  
  63. <div class="header">
  64.   <a href="PeTa.html" class="logo"><img src="http://www.claretschool.edu.ph/images/schoollogo/logoweb.png"></a>
  65.   <div class="header-right">
  66.     <a class="active" href="PeTa.html">Home</a>
  67.     <a href="PetaGallery.html">Gallery</a>
  68.     <a href="PeTaContact.html">Contact</a>
  69.     <a href="#about">Application</a>
  70.   </div>
  71. </div>
  72.  
  73. <div style="padding-left:20px">
  74.   <h1>Responsive Header</h1>
  75.   <p>Resize the browser window to see the effect.</p>
  76.   <p>Some content..</p>
  77. </div>
  78.  
  79. </body>
  80. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement