Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.88 KB | None | 0 0
  1.  
  2.  
  3.     <!DOCTYPE html>
  4.     <html lang="fr">
  5.  
  6.     <head>
  7.     <meta charset="utf-8" />
  8.     <title>Styles </title>
  9.  
  10.     <style type="text/css">
  11.  
  12.  
  13.             body
  14.                     {
  15.                             font-family: Arial sans-serif;
  16.                             font-size: 1em;
  17.                             background-color:white;
  18.                             color: black;
  19.                     }
  20.  
  21.             h1
  22.                     {
  23.                             font: bold 2em;
  24.                             margin-top: 0;
  25.                     }
  26.  
  27.             h2
  28.                     {
  29.                             font-size: 1.5em;
  30.                             text-decoration: underline;
  31.                     }
  32.  
  33.             h2:before
  34.                     {
  35.                             content:url('Images/ChromeIcon.png');
  36.                     }
  37.  
  38.             li
  39.                     {
  40.                             list-style-type: lower-greek;
  41.                     }
  42.             table
  43.                     {
  44.                             width: 600px;
  45.                             table-layout: fixed;
  46.                             border: solid black 1px;
  47.                             border-spacing: 4px;
  48.                     }
  49.             #tab
  50.                     {
  51.                             background-color: #E0E0E0;
  52.                     }
  53.             td
  54.                     {
  55.                             text-align: left;
  56.                             vertical-align: top;
  57.                     }
  58.             p       {
  59.                             text-align: justify;
  60.                             width: 600px;
  61.                             border: double blue 4px;
  62.                     }
  63.  
  64.             #header{
  65.                 border: black thin solid;
  66.                 width: 400px;
  67.                 height: 100px;
  68.                 background-color: yellow;
  69.                 text-align: center;
  70.             }
  71.     </style>
  72.  
  73.  
  74.  
  75.     </head>
  76.  
  77.     <body>
  78.  
  79.     <div id="header">
  80.  
  81.         <h1> Styles : bordures, listes, tableaux et paragraphes </h1>
  82.  
  83.     </div>
  84.  
  85.     <h2> Les lettres grecques </h2>
  86.  
  87.     <ol>
  88.     <li> alpha</li>
  89.     <li> beta</li>
  90.     <li> gamma</li>
  91.     <li> delta </li>
  92.     </ol>
  93.  
  94.     <h2> Un tableau </h2>
  95.  
  96.     <table border="1">
  97.  
  98.             <tr>
  99.                     <td colspan="3">Information sur le ville de Metz</td>
  100.             </tr>
  101.  
  102.  
  103.             <tr>
  104.                     <td rowspan="3" > Localisation </td>
  105.                     <td id="tab" > Pays </td>
  106.                     <td > France </td>
  107.             </tr>
  108.  
  109.             <tr>
  110.                     <td id="tab" >  R&eacute;gions </td>
  111.                     <td> Lorraine </td>
  112.             </tr>
  113.  
  114.             <tr>
  115.                     <td id="tab" > D&eacute;partement</td>
  116.                     <td> Moselle </td>
  117.             </tr>
  118.  
  119.             <tr>
  120.                     <td rowspan="2"> Donn&eacute;es chiffr&eacute;es </td>
  121.  
  122.                     <td id="tab" > Superficie </td>
  123.                     <td> 4194 ha = 41,94 km&sup2; </td>
  124.             </tr>
  125.  
  126.             <tr>
  127.                     <td id="tab" > Population </td>
  128.                     <td> 124300 hab </td>
  129.             </tr>
  130.     </table>
  131.  
  132.  
  133.     <h2>Un paragraphe</h2>
  134.             <p>
  135.                     Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  136.                     Phasellus finibus malesuada eros id mattis. Integer id volutpat velit.
  137.                     Fusce leo ligula, tristique eu arcu ac, finibus ultricies lorem.
  138.                     Aenean nec dolor bibendum nisl pellentesque sollicitudin sed eget urna.
  139.                     Aenean euismod turpis eget augue fringilla scelerisque ut eget sem.
  140.                     Pellentesque lacinia nunc at nunc dictum, quis lacinia odio venenatis.
  141.                     Nullam scelerisque eleifend sapien. Sed interdum consectetur mi at convallis.
  142.             </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement