Skip to content
Prev Previous commit
Next Next commit
add buttons and input
  • Loading branch information
tajulafreen committed Feb 4, 2024
commit f85a5211ba33b0edc19010aff4ea2d80ee5ccf69
13 changes: 11 additions & 2 deletions Source-Code/WeatherApp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Weather App</title>
</head>
<body>

<h1>Weather App</h1>
<input id="input" type="text" placeholder="Enter city name">
<button id="btn">Search</button>
<h6 id="country"></h6>
<h6 id="city-name"></h6>
<p id="date-time"></p>
<div id="weather-icon"></div>
<p id="temp"></p>
<button id="getlocation">get the location</button>
<script src="script.js"></script>
</body>
</html>