-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (84 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather App</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./weather-style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<script src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<div id="zip-form">
<form onsubmit="return redirectToZip()">
<div id="form-1">
<label for="zipInput">Enter ZIP code:</label>
<input type="text" id="zipInput" name="zip" required />
<button type="submit">Submit</button>
</div>
<div id="radio-btn-div">
<div id="measure-unit">
<label for="unitIn">in</label>
<input
type="radio"
id="unitIn"
name="measure"
value="in"
required
checked
onchange="return redirectToZip()"
/>
<label for="unitCm">cm</label>
<input
type="radio"
id="unitCm"
name="measure"
value="cm"
required
onchange="return redirectToZip()"
/>
</div>
<div id="temp-unit">
<label for="tempF">°F</label>
<input
type="radio"
id="tempF"
name="temp"
value="f"
required
checked
onchange="return redirectToZip()"
/>
<label for="tempC">°C</label>
<input
type="radio"
id="tempC"
name="temp"
value="c"
required
onchange="return redirectToZip()"
/>
</div>
</div>
</form>
</div>
<div id="root"></div>
<script type="text/babel" src="weather-app.js"></script>
</body>
</html>