index.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <h1 id="one"></h1>
  10. <h1 id="two"></h1>
  11. <h1 id="three"></h1>
  12. <h1 id="four"></h1>
  13. <div class="grid">
  14. <div class="topLeft">
  15. <div class="dateTime">
  16. <p id="date"></p>
  17. <p id="time"></p>
  18. </div>
  19. <div class="weather">
  20. <div id="currentWeather" class="weatherBlock">
  21. <h2>Current Weather</h2>
  22. <div class="condition">
  23. <img>
  24. <p class="conditionText"></p>
  25. </div>
  26. <div class="weatherInfo">
  27. <p id="temp"></p>
  28. <p id="feels"></p>
  29. <p id="wind"></p>
  30. <p id="humidity"></p>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="topRight">
  36. <img id="radar" src="https://radar.weather.gov/ridge/standard/KLTX_0.gif" alt="radar">
  37. </div>
  38. <div class="bottomLeft">
  39. <table>
  40. <thead id="forecastHead">
  41. <tr>
  42. <th></th>
  43. <th></th>
  44. <th></th>
  45. <th></th>
  46. </tr>
  47. </thead>
  48. <tbody id="forecastBody">
  49. <tr>
  50. <td>Temp (&deg;F)</td>
  51. <td></td>
  52. <td></td>
  53. <td></td>
  54. </tr>
  55. <tr>
  56. <td>Humidity</td>
  57. <td></td>
  58. <td></td>
  59. <td></td>
  60. </tr>
  61. <tr>
  62. <td>Chance Of Rain</td>
  63. <td></td>
  64. <td></td>
  65. <td></td>
  66. </tr>
  67. <tr>
  68. <td>Precipitation (inches)</td>
  69. <td></td>
  70. <td></td>
  71. <td></td>
  72. </tr>
  73. <tr>
  74. <td>Max Wind (MPH)</td>
  75. <td></td>
  76. <td></td>
  77. <td></td>
  78. </tr>
  79. <tr>
  80. <td>Sunrise</td>
  81. <td></td>
  82. <td></td>
  83. <td></td>
  84. </tr>
  85. <tr>
  86. <td>Sunset</td>
  87. <td></td>
  88. <td></td>
  89. <td></td>
  90. </tr>
  91. </tbody>
  92. </table>
  93. </div>
  94. <div class="bottomRight">
  95. <iframe src="https://www.youtube-nocookie.com/embed/4nMfRpesYfw?si=O9Up2lQKNo8v9gi2" 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>
  96. </div>
  97. </div>
  98. <script></script>
  99. </body>
  100. </html>