Advertisement
florin88

HTML5 & CSS: esempio base

Feb 9th, 2014
1,777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it">
  3. <head>
  4. <title>HTML5 & CSS3: layout sito con 2 colonne</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <link type="text/css" rel="stylesheet" href="style.css" title="Style" media="all" />
  7.  
  8. <style type="text/css">
  9.  
  10. body {
  11.     background:white;
  12.     text-align:center;
  13.     font-family:Helvetica, arial, sans-serif;
  14. }
  15.  
  16. div#contenitore {
  17.     background:#50b4ab;
  18.     width:900px; margin:0 auto;
  19.     text-align:left;
  20.    
  21. }
  22.  
  23. div#header {
  24.     background:#92808b;
  25.         text-align:center;
  26.     height:5em;
  27.         color:white;
  28.         font-family:Verdana, serif;
  29. }
  30.  
  31. h1 {
  32.     color:white;
  33.     text-align:right;
  34.     padding:1em 1em 0 0;
  35.     font-family:Georgia, serif;
  36. }
  37.  
  38. h2  {
  39.     color:white;
  40.     text-align:right;
  41.     padding:1em 1em 0 0;
  42.     font-family:Georgia, serif;
  43. }
  44.  
  45.  
  46. div#colsx {
  47.     width:630px;
  48.     float:left;
  49.     padding:10px;
  50.     border-top:3px solid white;
  51. }
  52.  
  53. div#coldx {
  54.     background:#99c199;
  55.     width:227px;
  56.     float:left;
  57.     padding:10px;
  58.     border-left:3px solid white;
  59.     border-top:3px solid white;
  60. }
  61.  
  62. div#footer {
  63.     background:#a3a3a3;
  64.     clear:left;
  65.     border-top:3px solid white;
  66.     text-align:center;
  67. }
  68.  
  69. </style>
  70. </head>
  71.  
  72.  
  73. <body>
  74.  
  75.     <div id="contenitore">
  76.     <div id="header">LA TESTA DEL TUO SITO</div>
  77.     <div id="colsx">
  78.         <header><h1>QUESTA È LA COLONNA 1</h1></header>
  79.             <article>« Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquid ex ea commodi consequat. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint obcaecat cupiditat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. »<article></div>
  80.  
  81.     <div id="coldx">
  82.         <header><h2>QUESTA È LA COLONNA 2</h2></header>
  83.             <article>« Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquid ex ea commodi consequat. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint obcaecat cupiditat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. »</article></div>
  84.  
  85.     <footer><div id="footer">IL FOOTER DEL TUO SITO © 2007 Esmpio Inc.</div></footer>
  86. </div>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement