Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="/assets/css/style.css">
  9. <link href="https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap" rel="stylesheet">
  10. <title>Pogodowo.pl</title>
  11. </head>
  12.  
  13. <body>
  14.  
  15. <section id="video-background">
  16. <video autoplay muted loop>
  17. <source src="assets/video/background.mp4" type="video/mp4" />
  18. </video>
  19. </section>
  20.  
  21. <section id="weather">
  22. <h1>Pogoda</h1>
  23. <form class="weather-form">
  24. <input type="text" placeholder="Wpisz miasto" class="input-city" />
  25. <button type="submit">Pokaż pogodę</button>
  26. </form>
  27. <div class="loader">
  28. <div class="lds-spinner">
  29. <div></div>
  30. <div></div>
  31. <div></div>
  32. <div></div>
  33. <div></div>
  34. <div></div>
  35. <div></div>
  36. <div></div>
  37. <div></div>
  38. <div></div>
  39. <div></div>
  40. <div></div>
  41. </div>
  42. </div>
  43. <div class="weather-data">
  44.  
  45. </div>
  46. </section>
  47.  
  48. <script src="/assets/js/axios.min.js"></script>
  49. <script src="/assets/js/main.js"></script>
  50. </body>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement