-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.06 KB
/
Copy pathindex.html
File metadata and controls
55 lines (55 loc) · 2.06 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
author:Debarun Mitra
application name:Weather Report application
objective: Update the user with current weather according to there location
file description: HTML file of Weathrt Application
-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="weather report application">
<meta name="keywords" content="HTML,CSS,JSON,JavaScript">
<meta name="author" content="DebarunMitra">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeatherApp</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--Application banner start-->
<div class="color-part">
<p class="weatherClass"><b>Weather<span class="appClass">App</span></b><i><span class="quote">find your sky</span></i></p>
</div>
<!--Application banner stop-->
<!--main weather div start-->
<div class="main-weather-div">
<div class="contentArea">
<p id="cityName" class="cityName"></p>
<p id="dayTime" class="dayTime"></p>
<div class="ws-icon">
<p id="report" class="weatherStatus"></p>
<img id="wicon" class="weather-icon" src="https://openweathermap.org/img/wn/02d@2x.png" alt="weatherIcon">
</div>
</div>
<div class="temp-canf">
<p><span id="temp" class="tempCount"></span></p>
<p class="cbf-pos"><b><span id="cel" class="celciusClass">℃</span>
<span class="divBar"> | </span><span id="fahr" class="fahrenhiteClass">℉</span></b></p>
</div>
<div class="error-msg">
<p id="errmsg"></p>
</div>
<div class="inputDiv">
<p class="inputHead"><b>Enter Your City</b></p>
<input type="text" id="inputSearch" class="textBox" name="text" value="" placeholder="City Name">
<input type="button" id="btnSearch" class="search-btn" value="Search">
<input type="hidden" id="inputChecker" class="endBox">
<div id="suggestedVal" class="suggestVal">
</div>
</div>
</div>
<!--main weather div stop-->
</body>
<script src="js/script.js"></script>
<!--script src="js/city.js"></script-->
</html>