Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 1.08 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title>Untitled Document</title>
  6. <script src="xhr.js"></script>
  7. <style type="text/css">
  8. #wrap {
  9.         background-color: #CC0;
  10.         height: auto;
  11.         width: 900px;
  12. }
  13. #menu {
  14.         background-color: #C90;
  15.         height: 50px;
  16.         width: 900px;
  17. }
  18. #tit_noticias {
  19.         background-color: #C30;
  20.         float: left;
  21.         height: 300px;
  22.         width: 300px;
  23. }
  24. #noticia_ampliada {
  25.         background-color: #9C0;
  26.         height: 300px;
  27.         width: 300px;
  28.         float: left;
  29. }
  30. #tweets {
  31.         background-color: #FF0;
  32.         float: left;
  33.         height: 300px;
  34.         width: 300px;
  35. }
  36. .titulos {
  37.         background-color: #F96;
  38.         height: 30px;
  39.         width: 250px;
  40.         margin-top: 10px;
  41. }
  42. </style>
  43. </head>
  44.  
  45. <body>
  46.  
  47. <div id="wrap">
  48.  
  49. <div id="menu">botones</div>
  50.  
  51. <div id="tit_noticias" >
  52.  
  53. <div class="titulos"></div>
  54.  
  55. </div>
  56.  
  57. <div id="noticia_ampliada">noticia ampliada</div>
  58.  
  59. <div id="tweets"></div>
  60.  
  61. </div>
  62.  
  63. </body>
  64. </html>