Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Practicas</title>
  6. <style>
  7. body{
  8. background:url("imagenes/img1.jpg");
  9. background-size: 100%;
  10. background-repeat: no-repeat;
  11. background-attachment: fixed;
  12. }
  13. nav{
  14. background-color: #5935F4;
  15. width: 90%;
  16. height: 30px;
  17. color: #FFFFFF;
  18. margin-bottom: 10px;
  19. padding-top: 5px;
  20. }
  21. header{
  22. background-color: #0F14E4;
  23. width: 90%;
  24. height: 100px;
  25. color: #FFF;
  26. line-height: 100px;
  27. font-size: 2.5em;
  28. text-align: center;
  29. margin-bottom: 10px;
  30. }
  31. main {
  32.  
  33. width: 90%;
  34. height: 600px;
  35. margin-bottom: 10px;
  36.  
  37. }
  38. section{
  39. background-color: rgba(248,100,100,.5);
  40. width: 60%;
  41. height: 590px;
  42. float: left;
  43. }
  44. article{
  45. background-color: #F2C908;
  46. width: 90%;
  47. height: 250px;
  48. line-height: 250px;
  49. text-align: center;
  50. font-size: 3em;
  51. color: #FFF;
  52.  
  53. }
  54. aside{
  55. background-color: #0000ff;
  56. width: 30%;
  57. height: 590px;
  58. float: right;
  59. text-align: center;
  60. line-height: 590px;
  61. font-size: 1.5em;
  62. color:#FFFFFF;
  63.  
  64. }
  65. footer {
  66. clear: both;
  67. background-color: #00f0ff;
  68. width: 90%;
  69. height: 70px;
  70. line-height: 70px;
  71. font-size: 1.5em;
  72. text-align: center;
  73.  
  74.  
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <!--Barra de navegación -->
  80. <nav> Menú de opciones</nav>
  81. <!--Cabecera de la página -->
  82. <header>Titulo de Página</header>
  83. <!--Contenido principal-->
  84. <main>
  85. <!--Contenido central -->
  86. <section>
  87. <h1>Contenido Central</h1>
  88. <article> Artículo 1</article>
  89. <br>
  90. <article>Artículo 2</article>
  91. </section>
  92. <!--Barra lateral-->
  93. <aside>
  94. Barra lateral
  95. </aside>
  96. </main>
  97. <!--Pie de página-->
  98. <footer>Pie de Página</footer>
  99. </body>
  100. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement