<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
</head>
<body>
<div class="container">
<div class="input">
<input type="text " class="inputValue" placeholder="Enter
Location">
<button class="button">Find Weather</button>
</div>
<h1 class="temp">----°C</h1>
<p class="desc">---</p>
</div>
<script src="./api.js"></script>
</body>
</html>