-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (104 loc) · 4.41 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Kolker+Brush&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+Oriya&display=swap" rel="stylesheet" />
<title>Weather Forecast</title>
</head>
<body>
<h1 class="overline" id="city">
<div class="underline weather1"></div>
</h1>
<div id="smooth-container">
<button class="weather1 cta">
<i class="fa fa-cloud" style="font-size: 32px; display: inline-block;"></i>
<span class="location_text">Location</span>
</button>
</div>
<div class="jscontroller" id="weather">
<div class="condition temp-1" id="tempC">49 °F</div>
<span class="°c" id="tempF">|°C</span>
<ul style="list-style: none;" id="time">
<li id="date"></li>
</ul>
<p id="wrapper-description" class="wrapper-bg"></p>
</div>
<!-- Cities temperatures not accurate-->
<div id="container">
<div class="list lst-1">Tokyo - 56°F</div>
<div class="list lst-2">Rome - 58°F</div>
<div class="list lst-3">Zürich - 46°F</div>
</div>
<!--Weather foreast to SF.-->
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" aria-current="page"
href="https://weather.com/weather/tenday/l/54f9d8baac32496f6b5497b4bf7a277c3e2e6cc5625de69680e6169e7e38e9a8">10
days of weather</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="https://weather.com/weather/monthly/l/54f9d8baac32496f6b5497b4bf7a277c3e2e6cc5625de69680e6169e7e38e9a8">Monthly</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Read More</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">More infor</a>
</li>
</ul>
<!--Current Humidity-->
<div class="row">
<div class="col-6">
<div class="clearfix">
<div class="float-md-right">
<ul style="list-style: none;" id="style">
<li class="styl-1">Humidity:<span id="humidity"></span></li>
<br /><br />
</ul>
</div>
</div>
</div>
</div>
<!-- Search form -->
<!--This search form idea was -https://codepen.io/himalayasingh
just changed the style on some.-->
<form id="search_form" method="get" action="">
<div class="active-purple-3 active-purple-4 mb-4" id="tb">
<div id="td">
<input type="search" class="form-control" placeholder="Look for city here" autofocus="on"
autocomplete="off" id="city-input" />
</div>
<div class="col-3">
<input type="submit" value="Search" class="form-control td" />
</div>
</div>
<div class="active-purple active-purple-2 mb-3">
<div class="td" id="s-cover">
<button type="submit" class="btn1"></button>
</div>
</div>
</form>
<!-- Nav bar -->
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Library</a></li>
<li class="breadcrumb-item active" aria-current="page">Data</li>
</ol>
</nav>
<small>This <a href="https://github.com/bcot-code/Awesome1-proj" target="_blank">Open Souce</a>is by<em>Barbara C.
</em> </small>
<script src="js/script.js"></script>
</body>
</html>