Advertisement
Guest User

Untitled

a guest
Apr 5th, 2020
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <meta charset="utf-8"/>
  4.     <link rel="stylesheet" href="styles.css">
  5.     <script defer src="app.js"></script>
  6.     <script defer src="skycons.js"></script>
  7.     <title>Weather App</title>
  8.     <!--fit for mobile devices-->
  9.     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  10. </head>
  11. <body>
  12.     <div class="bgImage">
  13.         <div class="weatherContainer">
  14.     <div class="locationSection">
  15.         <!--default location-->
  16.         <h1 class="userLocation">Region</h1>
  17.         <canvas class="icon" width="128" height="128"></canvas>
  18.     </div>
  19.     <div class=temperatureSection">
  20.         <!--default temperature-->
  21.         <h2 class="temperatureInDegrees">34C&deg;</h2>
  22.         <div class="temperatureDescription">It's hot</div>
  23.     </div>
  24. </div>
  25. </div>
  26.  
  27. <a href="https:darksy.net/poweredby" class="disclaimer">Powered By Dark Sky</a>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement