-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./assets/css/reset.css"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css"/>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/moment.min.js"
></script>
</head>
<body>
<header class='bg-primary bg-gradient'>
<div class='container mb-5 p-4'>
<h1 class='d-flex justify-content-center'>Weather Forecast</h1>
</div>
</header>
<main>
<div class="">
<div class="row">
<div class="col-sm-12 col-lg-3 pe-3 ms-3">
<h3 class='mb-3'>Enter in a city:</h3>
<form>
<div class='mb-3'>
<input type='text' placeholder="City Name" class='form-control' id='form'>
</div>
<div class='mb-3'>
<button type="submit" class="btn btn-primary mt-2" id='btn'>Submit</button>
</div>
</form>
<h3 class=" border-top border-secondary mt-5">Search History</h3>
<ul class='list-group' id='button-list'></ul>
</div>
<div class="col-sm-12 col-lg-8" id="content">
<div id='main-content'></div>
<div id='sub-content'>
<ul id="card-list"></ul>
</div>
</div>
</div>
</div>
</main>
<footer>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>