-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.09 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Idan - Weather API</title>
</head>
<body>
<input type="text" id="search_textbox" placeholder="Search for a city...">
<button id="search_button" onclick="searchButtonClicked()" type="submit"><i class="fa fa-search"></i></button>
<article class="widget">
<div class="weatherIcon" id="weatherIcon"></div>
<div class="weatherInfo" id="weatherInfo">
<div class="temperature" id="temperature"><span></span></div>
<div class="description">
<div class="weatherCondition" id="weatherCondition"></div>
<div class="place" id="place"></div>
</div>
</div>
<div class="date" id="date"></div>
</article>
</body>
</html>