-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
90 lines (79 loc) · 3.57 KB
/
home.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Okiemute Gold - Weather App">
<title>Okiemute Gold - Weather App</title>
<!-- <link rel="canonical" href="https://weather-man-app.netlify.app/"/> -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="stylesheet" href="style/style.css">
<script src="sw.js"> </script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#4a778e">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#05445f">
</head>
<body>
<!-- <h1 id="app-header"><i class="fas fa-poo-storm"></i> Weather App</h1> -->
<h1 id="app-header"><i class="fas fa-cloud-sun"></i> Weather App</h1>
<div class="wrapper">
<!-- <div id="history">
<i class="fas fa-bars"></i>
<li id="recentSearch">he</li>
</div> -->
<audio src="/sound/sound.mp3" id="sound"></audio>
<div id="search-container">
<form class="submit-form">
<i class="fa fa-microphone" id="stt-icon"></i>
<input type="text" name="city" id="city-input" placeholder="Enter City or Zip code" required aria-autocomplete="both" title="Please enter a city name or zip code">
<button type="submit" id="submit-button" role="search">Submit</button>
<!-- <i class="fa fa-chevron-down" id="language-icon"></i> -->
</form>
</div>
<div id="error-message"><em>Please enter a city or zip code!</em></div>
<div id="weather-container">
<div id="main-weather-details">
<h1 id="city"></h1>
<div>
<img src="" alt="Current Weather Image" id="weather-description-img" width="100%" height="100%">
</div>
<div id="city-weather-details">
<div id="temperature"></div>
<div id="weather-description"></div>
</div>
<div id="feels-like"></div>
</div>
<hr>
<div class="other-weather-details">
<div id="other-temperature">
<div id="max-temp"></div>
<div id="min-temp"></div>
</div>
<div class="others">
<div id="humidity"></div>
<div id="wind"></div>
</div>
</div>
</div>
</div>
<footer>
<div class="copyright">© 2020 Okiemute Gold</div>
<div class="social">
<a href="https://github.com/OkiemuteGold" target="blank">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/gold_okiemute" target="blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.facebook.com/gokiemute/" target="blank">
<i class="fab fa-facebook"></i>
</a>
</div>
</footer>
<script src="script/script.js"></script>
</body>
</html>