-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (46 loc) · 2.04 KB
/
index.html
File metadata and controls
61 lines (46 loc) · 2.04 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
56
57
58
59
60
61
<!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>Java Project</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css">
<script src="./js/apikey.js" defer></script>
<script src="./js/main.js" defer></script>
<link rel="stylesheet" href="./css/styles.css"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css">
</head>
<body>
<div class="hero-image">
<div class="container-fluid">
<span class="text-light smaller mt-3 text-opacity-75 "><span style='font-size:20px;'>⛅</span> Weather API </span>
</div>
<div class="container">
<!-- Header Row -->
<div class="row mt-3">
<div class="col text-white-50">
<h1 class="text-center" id="top-header">Check the Weather...</h1>
</div>
</div>
<!-- Form Row -->
<div class="row mt-5 mb-3">
<form action="" id="weatherForm">
<div class="form-group form-inline">
<input type="text" name="city" class="form-control w-100"
placeholder="Enter City Name">
<div class=container</div>
<input type="submit" value="Submit"
class="btn btn-outline-light btn-secondary w-100 mt-3 mb-3">
</div>
</form>
</div>
<!-- Weather Info Display Row -->
<div class="row" id="weatherDisplay">
<!-- Use JS to grab this row and append columns with cards of country info when the form submitted -->
<!-- <button type="button"
class="btn btn-info p-5 rounded-circle btn-lg" id="topright"></button> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/js/bootstrap.bundle.min.js"></script> -->
</body>
</html>