Advertisement
Sclafus

Sito ICT 5ITS

May 26th, 2015
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4. <div id="header">
  5. <h1>Sito 4ITS</h1>
  6. </div>
  7.  
  8. <div id="nav">
  9. <a href="">Sclafani</a><br>
  10. <a href="">Bestetti</a><br>
  11. <a href="">Bonvini</a><br>
  12. <a href="">De Nardis</a><br>
  13. <a href="">Picinini</a><br>
  14. <a href="">Ciccarelli</a><br>
  15. <a href="">Delmonte</a><br>
  16. <a href="">Dattaro</a><br>
  17. <a href="">Rampini</a><br>
  18. </div>
  19.  
  20. <div id="section">
  21. <h1 style="text-align:center"><img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="" alt="Smiley" width="128" height="128"></h1>
  22. </div>
  23.  
  24. <div id="footer">
  25. Copyright ? 4ITS
  26. </div>
  27. <style>
  28. #header {
  29.     background-color:black;
  30.     color:white;
  31.     text-align:center;
  32.     padding:5px;
  33. }
  34. #nav {
  35.     line-height:30px;
  36.     background-color:#eeeeee;
  37.     height:300px;
  38.     width:100px;
  39.     float:left;
  40.     padding:5px;
  41. }
  42. #section {
  43.     width:350px;
  44.     float:left;
  45.     padding:10px;
  46. }
  47. #footer {
  48.     background-color:black;
  49.     color:white;
  50.     clear:both;
  51.     text-align:center;
  52.     padding:5px;
  53. }
  54. </style>
  55.  
  56. <script>
  57. function bigImg(x) {
  58.     x.style.height = "256px";
  59.     x.style.width = "256px";
  60. }
  61.  
  62. function normalImg(x) {
  63.     x.style.height = "128px";
  64.     x.style.width = "128px";
  65. }
  66. </script>
  67.  
  68. </body>
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement