Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f85a521

Browse files
committed
add buttons and input
1 parent f387a92 commit f85a521

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

Source-Code/WeatherApp/index.html

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,18 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Document</title>
6+
<title>Weather App</title>
77
</head>
88
<body>
9-
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>
1019
</body>
1120
</html>

0 commit comments

Comments
 (0)