-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (66 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic-bootstrap.min.css"
/>
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Weather Dashboard</title>
</head>
<body>
<!-- Header Section -->
<div class="justify-content-center bg-primary text-white mx-0 px-1">
<div class="row">
<div class="col-12 col-sm-12 col-md-12">
<h1 class="display-4 text-center w-100">Weather Dashboard</h1>
</div>
</div>
</div>
<!--------------------->
<!-- Main Section Container-->
<div class="container-fluid">
<!-- 1 Row-->
<div class="row">
<div class="col-3 bg-light border-1">
<div class=" headerSearch row mx-3">
<h3>Search for a City:</h3>
</div>
<div class="formInput row ml-3">
<input class="border" type="text" id="searchCity"/>
<button type="button" class="btn btn-primary btn-md border-0" id="btn-search">
<span class="oi oi-magnifying-glass"></span>
</button>
</div>
<!-- this border it just to see it, it needs to clear or erase-->
<div class="list-group row m-3" id="historic-Cities"></div>
</div>
<div class="col-9">
<div class="row border m-3" id="targetCity"></div>
<div class=" row m-3" id="infoCity"></div>
</div>
</div>
</div>
<!-- jQuery Libraries-->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- Script.js local code -->
<script type="text/javascript" src="./assets/js/script.js"></script>
</body>
</html>