We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f387a92 commit f85a521Copy full SHA for f85a521
Source-Code/WeatherApp/index.html
@@ -3,9 +3,18 @@
3
<head>
4
<meta charset="UTF-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Document</title>
+ <title>Weather App</title>
7
</head>
8
<body>
9
-
+ <h1>Weather App</h1>
10
+ <input id="input" type="text" placeholder="Enter city name">
11
+ <button id="btn">Search</button>
12
+ <h6 id="country"></h6>
13
+ <h6 id="city-name"></h6>
14
+ <p id="date-time"></p>
15
+ <div id="weather-icon"></div>
16
+ <p id="temp"></p>
17
+ <button id="getlocation">get the location</button>
18
+ <script src="script.js"></script>
19
</body>
20
</html>
0 commit comments