Create a weather weather app using html css javascript that
Create a weather weather app using html, css, javascript that has a search bar and allows users to view the weather of whichever city they want
Solution
This is the app to devolep whichever city you want
<!DOCTYPE html>
<html lang=\"en\">
<head>
<meta charset=\"utf-8\">
<title>Weather APP</title>
<link rel=\"stylesheet\" href=\"style.css\">
<script src=\".......\"></script>
</head>
<body>
<div id=\"forecast\">
<h1>Weather at <span id=\"location\"> </span></h1>
<div id=\"imgdiv\">
<img id=\"img\" src=\"\"/>
</div>
<p>It is currently <span id=\"temp\"> </span>ªF with <span id=\"desc\"> </span></p>
<p>Wind: <span id=\"wind\"></span></p>
</div>
</body>
</html>
