Advertisement
Guest User

Untitled

a guest
Jan 13th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  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.           </tr>
  23.         </tbody>
  24.       </table>
  25.       <div class="space"></div>
  26.       <table>
  27.         <tbody>
  28.           <tr>
  29.             <td class="icon"><i id="icon" class="wi wi-thermometer"></i></td>
  30.             <td class="temp"><span id="temp"></span><small>&deg;C</small></div></td>
  31.             <td class="icon"><i id="icon" class="wi wi-humidity"></i></td>
  32.             <td class="hum"><span id="hum"></span></td>
  33.           </tr>
  34.         </tbody>
  35.       </table>
  36.       <div id="placeholder">&nbsp;</div>
  37.     </div>
  38.  
  39.     <script src="js/weather.js"></script>
  40.     <script src="js/forecast.js"></script>
  41.   </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement