Advertisement
Sichanov

10. World Cup News

Jan 15th, 2023
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. #HTML
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5.  
  6. <head>
  7. <meta charset="UTF-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <link rel="stylesheet" href="world-cup-news.css">
  11. <title>World Cup News</title>
  12. </head>
  13.  
  14. <body>
  15. <main id="wrapper">
  16. <h1>
  17. World Cup News
  18. </h1>
  19. <p>
  20. The biggest scoreline in the history of the <strong>FIFA World Cup</strong> qualifiers - and indeed in the
  21. history of international football - was recorded on 11 April 2001, when Australia beat American Samoa 31-0.
  22. </p>
  23. <p>
  24. This legendary match also brought global renown for <em>Archie Thompson</em>, whose 13-goal haul set a new
  25. world
  26. record, which stands to this day, for an individual player in a single international match.
  27. </p>
  28. <p>
  29. And though the defeat earned American Samoa ignominy, so inspiring has their subsequent recovery been that
  30. it is now the subject of an acclaimed documentary, <em>'Next Goal Wins'</em>, showing across the world.
  31. </p>
  32. <h2>
  33. Destinations
  34. </h2>
  35. <ul>
  36. <li><img src="estadio-mineirao.jpg" alt="stadium"><span class="text"><strong>BELO HORIZONTE, STADIUM:
  37. Estadio Mineirao</strong></span></li>
  38. <li><img src="estadio-nacional.jpg" alt="stadium"><span class="text"><strong>BRASILIA, STADIUM: Estadio
  39. Nacional</strong></span></li>
  40. <li><img src="arena-pantanal.jpg" alt="stadium"><span class="text"><strong>CUIABA, STADIUM: Arena
  41. Pantanal</strong></span></li>
  42. </ul>
  43. </main>
  44. </body>
  45.  
  46. </html>
  47.  
  48. #CSS
  49.  
  50. #wrapper {
  51. width: 700px;
  52. height: 730px;
  53. border: 1px solid #000000;
  54. margin-left: auto;
  55. margin-right: auto;
  56. padding: 10px 20px;
  57. background-color: #a6e1ec;
  58. }
  59.  
  60. img {
  61. width: 200px;
  62. margin-right: 10px;
  63. vertical-align: middle;
  64. }
  65.  
  66. li {
  67. width: 595px;
  68. padding: 10px;
  69. margin-bottom: 5px;
  70. font-size: 14px;
  71. border: 1px solid #000000;
  72. }
  73.  
  74. .text {
  75. color: #3f51b5;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement