-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (40 loc) · 2.04 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
<!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>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
<script src="node_modules/jquery/dist/jquery.js"></script>
<!-- AFTER THE SCRIPT -->
<!-- Containers to hold the input for searching, then on the next row the output of the information. -->
<div class="container-fluid bg-dark text-light">
<div class="row text-center">
<h1 class="display-1 fw-bold">The Basic Weather App</h1>
<h2 class="display-3">For users that need it simple,</h2>
<h5 class="fst-italic ">--"Just the Facts Maam."</h5>
</div>
<div class="row align-items-center bg-danger text-center">
<div class="col-lg-6 col-md-6">
<label for="searchInput" class="lead fw-bolder">Search for Location</label><br>
<input type="text" id="searchInput" placeholder="City,State; Zip Code"><br>
<button class="btn btn-info m-3" id="inputBtn">Search</button>
</div>
<div class="col-lg-6 col-md-6">
<img src="Weather_Two Color.svg" alt="Weather Man" class="img-fluid">
</div>
</div>
<!-- HERE IS THE DYNAMIC CONTENT ** it creates its own row -->
<div id="appData" class="bg-dark bottom-page">
<h3 class="display-6 text-center">Search Your Location<span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></h3>
</div>
</div>
<script src="script.js"></script>
</body>
</html>