-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (73 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeatherFlow</title>
<link rel="shortcut icon" type="image/jpg" href="favicon.png" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<img src="./logo.png" id="logo" alt="logo"></img>
<div id="searchbar">
<form id="searchform">
<i class="fas fa-map-marker-alt fa-1x"></i>
<input type="text" id="city" placeholder="Search city">
</form>
</div>
<div class="unit">
<button id="F" class="selected">°F</button>
<div>|</div>
<button id="C">°C</button>
</div>
</div>
<div id="content">
<div id="today-card">
<div id="currentcity"></div>
<div id="currenttemp"></div>
<div id="details">
<div id="condition"></div>
<div class="highandlow">
<div id="high"></div>
<div id="low"></div>
</div>
<div class="more-info">
<div id="humidity"></div>
<div id="wind"></div>
</div>
</div>
</div>
<div id="hourly-card"></div>
<div id="week-card"></div>
</div>
<div id="footer">
<div>Weather icons by iconixar - Flaticon</div>
<div class="github">
<div>© 2022 kwen0</div>
<a href="https://github.com/kwen0/weather-app">
<img src="icons/github.png" alt="github logo" class="ghlogo" />
</a>
</div>
</div>
<template class="hourly-template">
<div class="hour-cell">
<div class="hour"></div>
<div><img src="" class="icon" alt="Weather icon"></img></div>
<div class="temp"></div>
</div>
</template>
<template class="week-template">
<div class="day-cell">
<div class="day"></div>
<div><img src="" class="icon" alt="Weather icon"></img></div>
<div class="details"></div>
<div class="temp"></div>
</div>
</template>
<script src="script.js"></script>
</body>
</html>