-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 2.47 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
<!DOCTYPE html>
<html>
<head>
<title>How's the weather, bro?</title>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Knewave&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Sigmar+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="src/style.css">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div class="container">
<div class="row title">
<h1>How's da <em>weada</em>, bro?
</h1>
</div>
<div class="row">
<div class="col-4">
<h2 class="name" id="h2Temp">
</h2>
<h2 class="celsiusC"><a href="" id="celsius">°C
</a></h2>
<h2 class="farenheitF"><a href="" id="farenheit">°F
</a></h2>
<div class="current_time">
<span class="city" id="currentCity">Choose a place</span>
<span class="feelsLike">Feels like<span id="feelsLike"></span>° C</span>
<span class="humidity">Humidity<span id="humidity"></span>%</span>
<span class="wind">Wind Speed <span id="wind"></span>m/s</span>
</div>
</div>
<div class="col-4">
<div class="current_icon">
<img src="http://openweathermap.org/img/wn/[email protected]" alt="weatherIcon" id="icon"/>
</div>
<span id="description"><em>Weather description</em></span>
<button class="buttonCurrentPlace" id="buttonCurrentPlace"><em>EXACT </em> LOCATION</button>
</div>
<div class="col-4 search_place">
<span class="week_day" id="weekDay">
</span>
<span class="date_day" id="dateDayMonth">
</span>
<div class="date_hours">
<span class="time" id="actualTime">
</span>
</div>
<form id="inputTextCity">
<input type="text city" placeholder="Enter a city" id="enterCity" />
<input id="citySubmit" type="submit" class="bnt btn-primary" value="CHANGE CITY"/>
</form>
</div>
</div>
</div>
<div class="container next_days">
<p class="link"><a href="https://github.com/CrisLeash/my-WeatherApp.git">Open source code</a> by CrisLeash </p>
</div>
<script src="src/script.js"></script>
</body>
</html>