Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2.     <html>
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>Serious</title>
  7.         <style>
  8.                         body{
  9.             margin:  0 ;
  10.             padding: 0 ;
  11.             }
  12.  
  13.             header li{
  14.             float:left;
  15.             display:inline;
  16.             padding: 0 20px 0 20px;
  17.             }
  18.             header #marque{
  19.             position: relative;
  20.             left: 40px;
  21.             float:left;
  22.             }
  23.  
  24.             header #marque h1{
  25.             margin:0;
  26.             }
  27.             header nav{
  28.             position: relative;
  29.             /* right: 50px;  */
  30.             float:right;
  31.             /* margin-top:10px; */
  32.             }
  33.             header{
  34.                 height: auto;
  35.                 padding:10px;
  36.                
  37.             }
  38.             header:after {
  39.             content: ""; /* Important, sinon l'élément n'est pas généré. */
  40.             display: table;
  41.             clear: both;
  42.             }
  43.             .conteneur{
  44.             padding-right: 15px;
  45.             padding-left: 15px;
  46.             width: 100%;
  47.  
  48.             }  
  49.         </style>
  50.     </head>
  51.     <body>
  52.         <header  style="background-color: blue;">
  53.             <div class="conteneur">
  54.                 <div id="marque">
  55.                     <h1>Le monde <span>Scientifique</span></h1>
  56.                 </div>
  57.                 <nav>
  58.                     <ul>
  59.                         <li>Acceuil</li>
  60.                         <li>Sommaire</li>
  61.                         <li>BlaBla</li>
  62.                         <li>Blabla2</li>
  63.                     </ul>
  64.                 </nav>
  65.             </div>
  66.         </header>  
  67.  
  68.         <!--Page begins -->
  69.  
  70.         <div id="bloc_page">
  71.            
  72.         </div>
  73.  
  74.     </body>
  75.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement