-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 916 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Weather App</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="card">
<form class="get-weather">
<input type="text" id="get-weather-city" placeholder="Enter a Place">
<input type="button" class="bttn" id="get-weather-unit" value="°C">
<input type="submit" class="bttn" value = "Go">
</form>
<i id="condition"></i>
<div class="card-text">
<div id="name-container">
<p id="name"></p>
</div>
<p id="temp"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>