-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (132 loc) · 3.87 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!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>OggiTempo</title>
<link rel="icon" type="image/x-icon" href="./icons/LogoIcon.png" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<nav id="mainnav">
<div id="mainlogo">
<img src="./images/LogoVertical.png" alt="logo" />
</div>
<div id="language">
<span id="span1"
><img src="./icons/Language.png" alt="language"
/></span>
<span id="span2">ENG</span>
</div>
</nav>
<nav id="mobilenav">
<div id="mobilelogo">
<img src="./images/LogoHorizontal.png" alt="logo" />
</div>
<div id="hamburger">
<img src="./icons/MenuBar.png" alt="hamburger" />
</div>
</nav>
<div id="collapse">
<ul id="options">
<li class="mobileoption">
<span class="mobileoptionlogo"
><img src="./icons/DarkTheme.png" alt="themes"
/></span>
<span>Themes</span>
</li>
<li class="mobileoption">
<span class="mobileoptionlogo"
><img src="./icons/Language.png" alt="language"
/></span>
<span><b id="eng">ENG</b>/<b id="ita">ITA</b></span>
</li>
</ul>
</div>
<main>
<nav id="subnav">
<form class="searchbar">
<input
type="text"
name="city"
autocomplete="off"
placeholder="Search your city..."
/>
<button type="submit">
<img src="./icons/SearchBar.png" alt="search" />
</button>
</form>
<button id="subthemes" type="button">
<img src="./icons/DarkTheme.png" alt="darktheme" />
</button>
</nav>
<div id="carousel">
<section id="landingsection">
<h1>how are you today?</h1>
<form class="searchbar">
<input
type="text"
name="city"
autocomplete="off"
placeholder="Search your city..."
/>
<button type="submit">
<img src="./icons/SearchBar.png" alt="search" />
</button>
</form>
</section>
<section id="resultsection">
<h1>ROME</h1>
<div id="resultbox">
<div id="temp">
<h2>SUNNY</h2>
<div>35<span>°</span></div>
</div>
<div id="details">
<h2>DETAILS</h2>
<hr />
<table>
<tr>
<td>Feels like:</td>
<td>38<span>°</span></td>
</tr>
<tr>
<td>Humidity:</td>
<td>30%</td>
</tr>
<tr>
<td>Wind:</td>
<td>10.3km/h</td>
</tr>
<tr>
<td>Visibility:</td>
<td>10km</td>
</tr>
</table>
</div>
<div class="col" id="morning">
<h3>Morning</h3>
<div class="visual">
<img src="./icons/Sun.png" alt="morning" />
</div>
</div>
<div class="col" id="afternoon">
<h3>Afternoon</h3>
<div class="visual">
<img src="./icons/Lightning.png" alt="afernoon" />
</div>
</div>
<div class="col" id="night">
<h3>Night</h3>
<div class="visual">
<img src="./icons/Snowy.png" alt="night" />
</div>
</div>
</div>
</section>
</div>
</main>
</body>
</html>