-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (56 loc) · 2.43 KB
/
index.html
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
56
57
58
59
60
61
<!-- Project For Weatherapp
to display Weather
Author:Shaik Mudassir
-->
<!DOCTYPE html>
<html>
<head>
<title>Weather|Home</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!-- start main containt for WeatherApp -->
<div class="WeatherApp">
<!-- Start Information left -->
<div class="left">
<h1><span style="color: #ffffff">Weather</span> App</h1>
</div>
<!-- End Information left -->
<!-- Start Information right -->
<div class="right">
<div class="display">
<div class="displaycity">
<h1 id="displaycity">Bangalore,Karnataka</h1>
</div>
<div class="displayWeather">
<div class="displayWeatherinfo">
<p id="daytime"></p>
<p ><span id="info"></span> <span id="emoji"></span></p>
</div>
<h1 >
<span id="celsius">20</span>
<sup class="calsfah">
<span onclick="convert('C')" id="C">℃</span>|
<span onclick="convert('F')" id="F">℉</span>
</sup>
</h1>
</div>
</div>
<div class="selectWeather">
<select id="city" onchange="getdatacel()">
<option value="Bangalore">Bangalore</option>
<option value="Delhi">Delhi</option>
<option value="Mumbai">Mumbai</option>
</select>
<!-- <input type="text" placeholder="Enter Your City" id="city" value="Bangalore"> -->
<!-- <a href="#" onclick="getdatacel()">Submit</a> -->
</div>
</div>
<!-- End Information Section2 -->
</div>
<!-- end main containt for WeatherApp -->
<!-- javascript -->
<script src="./js/script.js" type="text/javascript"></script>
</body>
</html>