minor html cleanup

This commit is contained in:
John Bowdre 2024-02-08 22:40:37 -06:00
parent 3dfff7ea2b
commit f07d781128

View file

@ -47,7 +47,7 @@
'falling': 'fa-solid fa-arrow-trend-down'
}
// Change the weather icon
// change the weather icon
const CLASS_MAP_WX = {
'clear-day': 'fa-solid fa-sun',
'clear-night': 'fa-solid fa-moon',
@ -72,7 +72,7 @@
</script>
</head>
<body>
<h1>Huntsville Wx</h1>
<h1>Local Weather</h1>
<ul>
<li>Conditions: <i class='fa-solid fa-cloud-sun-rain'></i><span id="conditions"></span></li>
<li>Temperature: <span id="temp"></span></li>
@ -80,6 +80,6 @@
<li>Wind: <span id="wind"></span></li>
<li>Precipitation Today: <span id="precipToday"></span></li>
<li>Pressure: <i class='fa-solid fa-arrow-right-long'></i><span id="pressure"></span></li>
<li><i style="font-size:0.9rem;font-style:italic">Last Update: <span id="time"></span></i></li>
<li><i>Last Update: <span id="time"></span></i></li>
</body>
</html>