Advertisement
Guest User

Codigo Peque

a guest
Oct 14th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf--8">
  5. <style>
  6. header ,
  7. footer {
  8. background - color : #222 ;
  9. color : lightgray ;
  10. }
  11.  
  12. footer {
  13. height : 40 px;
  14. }
  15.  
  16. header {
  17. height : 85 px;
  18. }
  19.  
  20. header ,
  21. footer p {
  22. padding : 10 px;
  23. }
  24.  
  25. header h1 ,
  26. header h2 ,
  27. header h3 ,
  28. header h4 ,
  29. header h5 ,
  30. header h6 {
  31. display : none ;
  32. }
  33.  
  34. header img {
  35. height : 35 px;
  36. width : 250 px;
  37. }
  38.  
  39. header nav {
  40. width : 100 %;
  41. background - color : #222 ;
  42. margin - bottom : 25 px;
  43. }
  44.  
  45. header li {
  46. display : inline - block ;
  47. padding : 10 px;
  48. }
  49.  
  50. header li : hover {
  51. background - color : #555 ;
  52. cursor : pointer ;
  53. }
  54.  
  55. header a {
  56. color : white ;
  57. text - decoration : none ;
  58. }
  59.  
  60. main {
  61. margin -top : 10 px;
  62. display : flex ;
  63. flex - direction : row ;
  64. }
  65.  
  66. section {
  67. justify - content : space - between ;
  68. width : 40 %;
  69. margin - left : 5 %;
  70. border : 3px solid rgb (150 , 25 , 25) ;
  71. border - radius : 10 px;
  72. padding : 20 px;
  73. }
  74.  
  75. section > h1 ,
  76. section > h2 ,
  77. section > h3 ,
  78. section > h4 ,
  79. section > h5 ,
  80. section > h6 ,
  81. section > p {
  82. color : rgb (150 , 25 , 25) ;
  83. }
  84.  
  85. article p {
  86. text - align : justify ;
  87. }
  88.  
  89. article a {
  90. padding : 10 px 20 px;
  91. background - color : rgb (150 , 25 , 25) ;
  92. border - radius : 5px;
  93. color : white ;
  94. text - decoration : none ;
  95. }
  96.  
  97. article a : hover {
  98. background - color : rgb (200 , 25 , 25) ;
  99. text - decoration : none ;
  100. }
  101.  
  102. aside {
  103. text - align : center ;
  104. background - color : cornflowerblue ;
  105. color : darkred ;
  106. width : 50 %;
  107. margin : 0 auto ;
  108. font - weight : bolder ;
  109. }
  110.  
  111. aside h1 ,
  112. aside h2 ,
  113. aside h3 ,
  114. aside h4 ,
  115. aside h5 ,
  116. aside h6 {
  117. animation : blinker 2s linear infinite ;
  118. }
  119.  
  120. @keyframes blinker {
  121. 50 % {
  122. opacity : 0;
  123. }
  124. }
  125.  
  126. </style>
  127. </head>
  128.  
  129. <body>
  130. <header><h1>Últimas Noticias</h1></header>
  131.  
  132. <section>
  133. <h2>Noticias Deportivas</h2>
  134. <p>Toda la información del fútbol, basquet, y mucho más.</p>
  135. <article>
  136. <h3>La preocupación de los argentinos</h3>
  137. <p>Todos los argentinos siguen preocupados por la indecisión de los expertos sobre quién es el mejor jugador de fútbol del mundo. <strong>Maradona</strong> y <strong>Messi</strong> son dos de los candidatos más votados.</p>
  138. <a href="https://www.infobae.com/america/deportes/2019/01/29/messi-es-mejor-jugador-que-maradona/">Leer Más</a>
  139. </article>
  140.  
  141. <article>
  142. <h3>Se puede jugar al básquet con 1,50?</h3>
  143. <p>El básquet siempre ha sido un deporte dominado por <em>personas de gran estatura</em>, pero una nueva óla de jugadores de <strong>baja estatura y gran performance</strong> están dando muestra de que la estatura no es un condicionante a la hora de jugar</p>
  144. <a href="https://eresdeportista.com/deportes/baloncesto/es-el-baloncesto-un-deporte-solo-para-altos/">Leer Más</a>
  145. </article>
  146. </section>
  147.  
  148. <section>
  149. <h2>Noticias del Espectáculo</h2>
  150. <p>Los famosos, la tele, el teatro, y todo el chisme.</p>
  151. <article>
  152. <h3>Mar del Plata o Villa Carlos Paz</h3>
  153. <p>¿Cuáles son las obras de teatro qué podemos encontrar este verano en los <em>puntos turísticos</em>? <a href="https://www.infobae.com/teleshow/infoshow/2019/01/03/cuales-son-las-obras-mas-vistas-de-mar-del-plata-y-carlos-paz/">Leer Más</a>
  154. </article>
  155. <article>
  156. <h3>Una nueva de Ricardo Darín</h3>
  157. <p>El actor nos cuenta de su nuevo trabajo, una película que no sabemos de que se trata, pere que seguro es buena, porque <strong>actúa Darín</strong>, y si es mala, no importa, porque <strong>actúa Darín</strong>.
  158. <a href="https://infocielo.com/nota/103893/la-odisea-de-los-giles-la-nueva-pelicula-de-ricardo-darin-situada-en-la-crisis-de-2001/">Leer Más</a>
  159. </article>
  160. </section>
  161.  
  162. <footer>Copyright 2019. Peque Mendez</footer>
  163.  
  164. </body>
  165. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement