myweather/index.html
Lance Edgar 5a584982e4 Basic app functions are working
definitely on the "minimal" side but this *mostly* covers my own usage
of the old mobile.weather.gov app
2024-06-08 13:15:29 -05:00

13 lines
330 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/nwslogo.gif">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>