Advertisement
Rafsys

webrafa

Oct 14th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. ///////////index.html/////////////
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <style>
  6. div.menu {
  7. background-color: #b3ecff;
  8. overflow: auto;
  9. white-space: nowrap;
  10. }
  11.  
  12. div.menu a {
  13. display: inline-block;
  14. color: black;
  15. text-align: center;
  16. padding: 30px;
  17. text-decoration: none;
  18.  
  19. }
  20.  
  21. div.titu p {
  22. display: inline-block;
  23. color: green;
  24. text-align: center;
  25. padding: 30px;
  26. text-decoration: none;
  27.  
  28. }
  29.  
  30.  
  31. div.menu a:hover {
  32. background-color: #777;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37.  
  38. <div class="titu">
  39. <p>PLATOS TIPICOS DEL PERU</a>
  40. </div>
  41. <div class="menu">
  42. <a href="#">AREQUIPA</a>
  43. <a href="#">TRUJILLO</a>
  44. <a href="contactos.html">CONTACTOS</a>
  45. </div>
  46.  
  47. <ul>
  48. <li>Costumbres</li>
  49. <li>Costos</li>
  50.  
  51. </ul>
  52.  
  53. <img src="tigre.jpg" width="201" height="108">
  54.  
  55. </body>
  56. </html>
  57.  
  58. ////////////////contactos.html/////////////////
  59.  
  60. <!DOCTYPE html>
  61. <html>
  62. <body>
  63.  
  64. <p>.....................</p>
  65.  
  66. <table >
  67. <thead>
  68. <tr>
  69. <th>Arequipa</th>
  70. <th>Trujillo</th>
  71. <th>Huancavelica</th>
  72. <th>Otros</th>
  73. </tr>
  74. </thead>
  75. <tfoot>
  76. <tr>
  77. <td colspan="4">
  78.  
  79. </td>
  80. </tr>
  81. </tfoot>
  82. <tbody>
  83. <tr>
  84. <td>Contacto Arequipa</td>
  85. <td>Contacto Trujillo</td>
  86. <td>Contacto Huancavelica</td>
  87. <td>cell4_1</td>
  88. </tr>
  89. <tr>
  90. <td>cell1_2</td>
  91. <td>cell2_2</td>
  92. <td>cell3_2</td>
  93. <td>cell4_2</td>
  94. </tr>
  95. </tbody>
  96. </table>
  97.  
  98. <br>
  99. <br>
  100. <br>
  101. <video width="420" height="340" autostart="false" controls>
  102. <source src="video.mp4">
  103. </video>
  104.  
  105. </body>
  106. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement