-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (69 loc) · 2.39 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Forcast</title>
<link href="https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Dancing+Script:wght@700&family=Della+Respira&family=Handjet:wght@500;900&family=Lato:wght@400;700&family=Montserrat:wght@400;700&family=Pacifico&family=Pangolin&family=Playfair:wght@300&family=Roboto:ital,wght@0,400;0,700;1,300&family=VT323&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/42696fbbae.js"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- INFO ON FAR LEFT-->
<div class="split info">
<div class="centered">
<h2 id="city" cityName></h2>
<h6 date-time></h6>
<div id="temperature" cityTemperature></div>
<img src="" id="image" />
<p id="cityWeather" cityWeather></p>
<div id="weatherInfo">
<div id="feeling" tempFeeling></div>
<div id="humidity" humidity></div>
<div id="wind" wind></div>
</div>
</div>
</div>
<!--LEFT INFO DISPLAYING CITY AND WEATHER CONDITIONS-->
<!--RIGHT INFO SEARCH FORM-->
<div class="split input">
<div class="centered">
<div id="form-container">
<h1>Current Weather</h1>
<h5>Search location</h5>
<button class="location-button" location-button><img class="map" src="images/zelda_botw_old_map.webp"></button>
<form container-form>
<input
type="text"
placeholder="City or Zip Code.."
id="search"
new-entry
required
/>
</form>
<!--END OF FORM-->
<!--SWITCH BETWEEN C AND F-->
<label class="switch">
<input type="checkbox" switch />
<span class="slider round">
<div>
<span>C</span>
<span>F</span>
</div>
</span>
</label>
</div>
<div>
<!--SOCIAL LINKS-->
<a href="https://github.com/codingmster1/weather-site" target="_blank"
><i class="fa fa-github"></i></a>
</div>
</div>
<div>
</div>
<script src="main.js"></script>
</body>
</html>