-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
146 lines (146 loc) · 4.53 KB
/
about.html
File metadata and controls
146 lines (146 loc) · 4.53 KB
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
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Charts</title>
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"/>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #1b1a52;
color: #fff;
padding: 20px;
}
.back-button {
position: fixed;
top: 20px;
left: 20px;
background-color: #1a73e8;
color: white;
padding: 10px;
border-radius: 50%;
font-size: 1.5rem;
cursor: pointer;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s;
}
.back-button:hover {
background-color: #1558b0;
}
h1 {
margin-top: 60px;
font-size: 2.5rem;
color: #fff;
}
.chart-container {
max-width: 800px;
margin: 20px auto;
background: #fff;
color: #333;
border-radius: 12px;
padding: 20px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
font-size: 1.1rem;
line-height: 1.6;
}
.btn {
position: relative;
margin-top: 30px;
}
#addBtn {
background-color: #1a73e8;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s, transform 0.2s;
}
#addBtn:hover {
background-color: #1558b0;
transform: scale(1.05);
}
#main {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.note {
width: 350px;
height: 250px;
background-color: #9abbda;
border-radius: 10px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.note textarea {
width: 100%;
height: calc(100% - 40px);
border: none;
resize: none;
padding: 10px;
font-size: 1rem;
border-radius: 0 0 10px 10px;
outline: none;
}
.note-header {
background-color: #1a73e8;
color: white;
padding: 10px;
text-align: left;
font-weight: bold;
}
@media (max-width: 768px) {
.chart-container {
margin: 10px;
font-size: 1rem;
}
#addBtn {
font-size: 0.9rem;
padding: 8px 16px;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<a href="index.html" class="back-button">
<span class="material-symbols-outlined">arrow_back</span>
</a>
<h1>About Us</h1>
<div class="chart-container">
Welcome! 😊 This website is your go-to destination for exploring the current weather forecast based on your search.
You can view the location on a map, compare weather conditions across up to three countries, and get detailed pollutant levels
to assess air quality and safety.
<br><br>
Visualize data with interactive bar charts showing wind, temperature, or humidity for your chosen location. Plus, check out
our <b>Products</b> section for health-related utilities from Coupang and use the <b>Sign-Up</b> feature to connect and enhance
your experience.
<br><br>
We hope you enjoy your time here and find it helpful!
</div>
<div class="btn">
<button id="addBtn">
<i class="fas fa-plus"></i> Add Note
</button>
</div>
<div id="main"></div>
<script src="https://kit.fontawesome.com/bf520e6492.js" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>