-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (73 loc) · 3.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!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">
<!-- Open Graph Tags -->
<meta property="og:title" content="Simple Weather - Easy to Get, Easy to Read!">
<meta property="og:description" content="Making finding out the weather simple by removing graphs, charts and other confusing information that nobody really understands.">
<!-- Favicon -->
<link rel="icon" href="assets/images/logo-favicon.png" type="image/pmg">
<!-- Page Title -->
<title>Simple Weather | Home</title>
<!-- CSS Links -->
<!-- Bootstrap 4 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- Custom CSS File -->
<link rel="stylesheet" href="./assets/css/style.css" type="text/css">
</head>
<body>
<div class="container-fluid background">
<!-- Landing Page Section -->
<div class="landing-section">
<!-- Landing Page Image -->
<div class="row">
<div class="col-12 hero-image hero-text">
<img src="./assets/images/landing-image-text.png" alt="Text" />
</div>
</div>
<!-- / .Landing Page Image -->
<!-- Location Search Section -->
<div class="row">
<div class="col-11 col-md-8 search-area">
<!-- Search Bar -->
<div class="row">
<div class="col-12 search-box">
<input id="searchInput" class="search-bar" type="text" placeholder="Enter Location Name">
<button id="searchButton" class="search-btn"><i class="fas fa-search"></i></button>
</div>
</div>
<!-- / .Search Bar -->
<!-- Search Bar Error - Elements Targetted if Error returned from User Search Input -->
<div class="row">
<div class="col-12" id="ifError"></div>
</div>
<!-- / .Search Bar Error -->
</div>
</div>
<!-- / .Location Search Section -->
</div>
<!-- / .Landing Page Section -->
<!-- Current Weather Card - Div ID targetted to display results of Current weather request -->
<div id="currentResults">
</div>
<!-- / .Current Weather Card -->
<!-- 5 Day Forecast Carousel Section - Div ID targetted to display results of 5 Day / 3 Hour weather request -->
<div id="carouselTarget">
</div>
<!-- / .5 Day Forecast Carousel Section -->
</div>
<!-- JavaScript Links Placed at bottom to increase page load times-->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Slick.js -->
<script src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
<!-- Carousel JS File -->
<script src="./assets/js/carousel.js"></script>
<!-- Weather API File -->
<script src="./assets/js/weather-api.js"></script>
</body>
</html>