-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 2.3 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body style="display:none;">
<div class="container">
<div class="content">
<div id="banner">
<h1>A simple weather app for you and your friends!</h1>
<h1>みんなの天気アップリ</h1>
<p>It's <span id="weather-text">sunny</span> in</p>
<p id="location">?</p>
</div>
<div id="mini-container">
<div id="temp-container">
<p id="temp">25</p>
<p id="temp-deg">°</p>
<br>
</div>
<div class="image">
<img src="https://res.cloudinary.com/aeroware/image/upload/v1497522848/danieledesantis-weather-icons-sunny_ifhcu4.svg" alt="Current Weather">
</div>
</div>
<div id="temp-selectors">
<button id="C" class="selected"><span>°</span>C</button>
<button id="F"><span>°</span>F</button>
</div>
</div>
<div class="image" id="side-image">
<img src="https://res.cloudinary.com/aeroware/image/upload/v1497522848/danieledesantis-weather-icons-sunny_ifhcu4.svg" alt="Current Weather">
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous">
</script>
<script src="javascript.js" async defer></script>
</body>
</html>