Ultizin

sdfsdfsadasdsa

Oct 17th, 2023
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.  
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.  
  9. <link rel="stylesheet" href="/assets/css/style.css">
  10.  
  11. <title>Site</title>
  12.  
  13. </head>
  14. <body>
  15.  
  16. <header>
  17. <div class="logo">
  18. <a href="/index.html"><img src="/assets/img/logoroblox.png" style="width: 80px; height: 80px; padding: 20px;"></a>
  19. <span style="vertical-align: 45px;">SITE</span>
  20. </div>
  21.  
  22. <ul>
  23. <li><a href="/index.html" style="color: #9b9b9b;">HOME</a></li>
  24. <li><a href="/pages/contact.html">CONTACT</a></li>
  25. <li><a href="/pages/aboutus.html">ABOUT US⠀</a></li>
  26. </ul>
  27.  
  28. </header>
  29.  
  30. <div class="content" id="content">
  31.  
  32. <h1>INICIO</h1>
  33.  
  34. <br>
  35. <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Velit, mollitia ipsum corporis enim placeat minus ab ratione fuga temporibus vel unde ipsam sunt porro itaque esse tempora consequuntur laboriosam, atque ex nesciunt necessitatibus. Consequuntur iure magni ea quidem. Saepe aperiam quas sunt! Ipsum deserunt amet minima sint sapiente officiis sunt itaque, vel cum dolor quas obcaecati esse magnam qui consectetur, reiciendis tempora. Autem perspiciatis sit cumque? Quisquam quibusdam hic sapiente sed labore animi amet excepturi laudantium, corrupti molestiae. Dolores, consectetur beatae. Magni dolores consectetur omnis cupiditate quo nesciunt facilis voluptates, perferendis minus, quos reiciendis, maxime inventore sint obcaecati porro enim!</p>
  36. <br>
  37. <br>
  38.  
  39. </div>
  40.  
  41. <footer></footer>
  42.  
  43. <script src="/assets/js/main.js"></script>
  44.  
  45. </body>
  46. </html>
  47.  
  48.  
  49. body {
  50. margin: 0;
  51. padding: 0;
  52. background-color: #dad9d8;
  53. font-size: 24px;
  54. font-weight: bold;
  55. font-family: Arial, Helvetica, sans-serif;
  56. }
  57.  
  58. header {
  59. background-color: #da9c51;
  60. color: white;
  61. height: 120px;
  62. font-size: 60px;
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. }
  67.  
  68. header ul {
  69. display: flex;
  70. list-style: none;
  71. gap: 30px;
  72. }
  73.  
  74.  
  75. header a {
  76. text-decoration: none;
  77. outline: none;
  78. color: #ffffff;
  79. }
  80.  
  81. header a:hover {
  82. color: #818181;
  83. }
  84.  
  85. header span {
  86. text-decoration: none;
  87. border-bottom: 10px dashed white;
  88. }
  89.  
  90. #content {
  91. padding: 100px;
  92. text-align: center;
  93. }
  94.  
  95. footer {
  96. background-color: #da9c51;
  97. height: 120px;
  98. }
Add Comment
Please, Sign In to add comment