iqair-apiserver/static/index.html

66 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2024-01-04 04:56:08 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-01-04 06:16:36 +00:00
<title>CUD Air Quality</title>
2024-01-04 04:56:08 +00:00
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
}
.button {
display: inline-block;
padding: 1rem 2rem;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-size: 1.2rem;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
2024-01-04 06:16:36 +00:00
<h1>Air Quality Monitoring System</h1>
<h2>Chulalongkorn University Demonstation School</h2>
2024-01-04 04:56:08 +00:00
<p>Where are you?</p>
2024-01-09 07:13:16 +00:00
<h3>Primary School</h3>
<a class="button" href="/card.html?location=satite">Card</a>
<a class="button" href="/square.html?location=satite">Compact</a>
<h3>Secondary School</h3>
<a class="button" href="/card.html?location=satitm">Card</a>
<a class="button" href="/square.html?location=satitm">Compact</a>
2024-01-04 04:56:08 +00:00
</div>
</body>
</html>