Advertisement
camille77

Untitled

Sep 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Find the precious!</title>
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9. <nav>
  10. <ul>
  11. <li>FindThePrecious.com</li>
  12. <li>Fellows</li>
  13. <li>Contact us</li>
  14. </ul>
  15. </nav>
  16. <section>
  17. <div class="carousel"></div>
  18. </section>
  19. <section>
  20. <h2>Fellows wanted dead <strong>(or alive if you want to eat them later)</strong></h2>
  21. </section>
  22. <section>
  23. <article class="reward"><img src="https://via.placeholder.com/400.png?text=Reward+1000+coins+gold" alt="Image Wizard"></article>
  24. <article class="reward"><img src="https://via.placeholder.com/400.png?text=Reward+1000+coins+gold" alt="Image fellows"></article>
  25. <article class="reward"><img src="https://via.placeholder.com/400.png?text=Reward+1000+coins+gold" alt="Image yummy"></article>
  26. </section>
  27.  
  28. <hr>
  29. <form>
  30. <h2>Contact us</h2>
  31. <div>
  32. <label for="email"></label><input type="email" name="user_mail" placeholder="@">
  33. </div>
  34. <div>
  35. <label for="adr"></label><input type="text" name="adr" placeholder="&#8962;">
  36. </div>
  37. <div>
  38. <label for="usr_slt"></label><input type="text" name="usr_slt" placeholder="I have seen one of them">
  39. </div>
  40. <div>
  41. <label for="msg"></label><textarea name="msg placeholder="Your message"></textarea>
  42. </div>
  43.  
  44.  
  45. </form>
  46. </body>
  47. </html>
  48.  
  49. ######################################### style.css ##########################################
  50.  
  51.  
  52. nav ul{
  53. list-style-type: none;
  54. background-color: black;
  55. margin: 0%;
  56.  
  57.  
  58. }
  59. nav li{
  60. display: inline;
  61. color:white;
  62. text-align: center;
  63.  
  64. }
  65. nav li:nth-of-type(2){
  66. display: inline;
  67. background-color:lightgrey;
  68. color:gray;
  69.  
  70. }
  71. .carousel {
  72. width: 100%;
  73. height: 200px;
  74. margin: 0%;
  75. padding-top: 5px solid black;
  76. background-color:lightgrey;
  77. border: 1px solid lightslategray
  78. }
  79. article {
  80. display: inline-block;
  81. margin: 20px;
  82.  
  83. }
  84.  
  85. strong {
  86. font-weight: normal
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement