-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (46 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
<!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://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<title>WEATHER</title>
</head>
<body id="backgroud-image">
<header class="conainer-fluid">
<nav>
<div class="nav-wrapper purple darken-4">
<span class="brand-logo center">YOUR WEATHER</span>
</div>
</nav>
</header>
<section class="container-fluid">
<button id="getWeather" type="button" class="waves-effect indigo lighten-1 btn hoverable">CLICK ME</button>
</section>
<main class="container" id="container-weather">
<div class="card hoverable color-alpha">
<div id="card-currently" class="card-content color-alpha">
<section id="title"></section>
<table class="centered">
<tbody id="container-table-currently"></tbody>
</table>
</div>
<div id="card-weather" class="card-reveal color-alpha">
<span id="close-card" class="card-title center">
The weather in your week
<i class="material-icons right">highlight_off</i>
</span>
<table class="centered" id="table-results-week">
<tbody id="container-table-week"></tbody>
</table>
</div>
</div>
</main>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>