-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
73 lines (63 loc) · 2.92 KB
/
index.php
File metadata and controls
73 lines (63 loc) · 2.92 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
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">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title>Weather App</title>
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous"> -->
<link rel="stylesheet" href="https://bootswatch.com/4/lux/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="custom-style.css">
</head>
<body>
<!-- for Search -->
<div class="">
<div class="jumbotron">
<form class="justify-content-center form-inline my-2 my-lg-0" action="" id="searchForm">
<input class="form-control text-center mr-sm-2" type="text" id="location" placeholder="Search..." autocomplete autofocus>
</form>
</div>
</div>
<!-- Loader -->
<div id="loader"></div>
<!-- Weather Informations-->
<div class="container" id="contentContainer">
<div class="error">
<h5 class="text-center display-4 " id="errorMessage"></h5>
</div>
<div id="weather" class="row pt-4">
<!-- <div class="col">
<img src="img/cloudy.jpg" alt="image-placeholder" class="img" id="setImg">
</div> -->
<div class="col">
<div class="row">
<div class="col p-3">
<ul>
<li class="location text-center">
<h1 id="getlocation"></h1>
</li>
<li class="main text-center">
<h5 class="main-type" id="mainType"></h5></li>
<h1 class="show-temp text-center" id="showTemp"></h1>
</ul>
</div>
<div class="col weather-icon">
<span id="weatherIcon"></span>
</div>
</div>
<div class="desc text-center" id="shortNews"></div>
<div class="row" id="dataTable">
</div>
</div>
</div>
</div>
<!-- JQUERY -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<!-- AXIOS -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- MAIN SCRIPT -->
<script src="script.js"></script>
</body>
</html>