Advertisement
Guest User

index.html

a guest
Jan 17th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8. <title>Wetter</title>
  9.  
  10. <link href="css/custom.css" rel="stylesheet">
  11. <link href="css/weather-icons.css" rel="stylesheet">
  12. <link href="https://fonts.googleapis.com/css?family=Oswald:400,700|Roboto:400,500,700" rel="stylesheet">
  13.  
  14. </head>
  15. <body>
  16. <div class="weather">
  17. <table>
  18. <tbody>
  19. <tr>
  20. <td class="icon"><i id="icon" class=""></i></td>
  21. <td colspan="3" class="aktuell">Aktuelles Wetter:<br><span id="weather_str"></span></td>
  22.  
  23. <td class="icon"><i id="icon" class="wi wi-thermometer"></i></td>
  24. <td class="temp"><span id="temp"></span><small>&deg;C</small></div></td>
  25. <td class="icon"><i id="icon" class="wi wi-humidity"></i></td>
  26. <td class="hum"><span id="hum"></span></td>
  27. </tr>
  28. </tbody>
  29. </table>
  30. <div class="space"></div>
  31.  
  32. <div id="placeholder">&nbsp;</div>
  33. </div>
  34.  
  35. <script src="js/weather.js"></script>
  36. <script src="js/forecast.js"></script>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement