-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
39 lines (39 loc) · 1.47 KB
/
weather.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="data:image/png;base64,AAABAAEAEBACAAEAAQCwAAAAFgAAACgAAAAQAAAAIAAAAAEAAQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA">
<title></title>
<style>
body {
background-color: black;
color: white;
display: flex;
flex-direction: column;
align-items: center; /* Center horizontally */
padding: 10px;
font-family: 'Courier New', Courier, monospace;
margin: 0;
}
.weather-container {
width: 62%; /* Set a reasonable width */
height: 630px; /* Adjust height for better iframe visibility */
margin: -20px 0; /* Margin for spacing */
}
iframe {
border: none;
width: 100%;
height: 100%; /* Ensure iframe takes full height of its container */
color-scheme: dark;
}
</style>
</head>
<body>
</br>
<!-- Weather Container -->
<div class="weather-container">
<iframe src="https://wttr.in/boca+raton"></iframe>
</div>
</body>
</html>