index.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <style></style>
  7. </head>
  8. <body>
  9. <div class="grid">
  10. <div class="topLeft">
  11. <div class="dateTime">
  12. <p id="date"></p>
  13. <p id="time"></p>
  14. <div>
  15. <p id="weatherDescription"></p>
  16. <p id="currentWeatherLogo"></p>
  17. </div>
  18. <img id="conditionLogo">
  19. </div>
  20. <div class="weather">
  21. <div id="currentWeather" class="weatherBlock">
  22. <div class="weatherInfo">
  23. <p id="temp" class="weatherItem"></p>
  24. <p id="feels" class="weatherItem"></p>
  25. <div id="wind" class="weatherItem">
  26. <p></p>
  27. <svg width="24px" height="24px" viewBox="0 0 24 24" stroke-width="1.5" fill="none" color="#000000"><path d="M12 21L12 3M12 3L20.5 11.5M12 3L3.5 11.5" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>
  28. </div>
  29. <p id="humidity" class="weatherItem"></p>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="topRight">
  35. <img id="radar" src="https://radar.weather.gov/ridge/standard/KLTX_0.gif" alt="radar">
  36. </div>
  37. <div class="bottomLeft">
  38. <table>
  39. <thead id="forecastHead">
  40. <tr>
  41. <th></th>
  42. <th></th>
  43. <th></th>
  44. <th></th>
  45. </tr>
  46. </thead>
  47. <tbody id="forecastBody">
  48. <tr>
  49. <td>Temp (&deg;F)</td>
  50. <td></td>
  51. <td></td>
  52. <td></td>
  53. </tr>
  54. <tr>
  55. <td>Humidity</td>
  56. <td></td>
  57. <td></td>
  58. <td></td>
  59. </tr>
  60. <tr>
  61. <td>%Rain</td>
  62. <td></td>
  63. <td></td>
  64. <td></td>
  65. </tr>
  66. <tr>
  67. <td>Precip. (in.)</td>
  68. <td></td>
  69. <td></td>
  70. <td></td>
  71. </tr>
  72. <tr>
  73. <td>Wind (mph)</td>
  74. <td></td>
  75. <td></td>
  76. <td></td>
  77. </tr>
  78. <tr>
  79. <td>Sunrise</td>
  80. <td></td>
  81. <td></td>
  82. <td></td>
  83. </tr>
  84. <tr>
  85. <td>Sunset</td>
  86. <td></td>
  87. <td></td>
  88. <td></td>
  89. </tr>
  90. </tbody>
  91. </table>
  92. </div>
  93. <div class="bottomRight">
  94. <iframe src="https://www.youtube-nocookie.com/embed/C96oohpWBGw?si=wsK9Y127VhavJ3hj" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
  95. </div>
  96. </div>
  97. <script></script>
  98. </body>
  99. </html>