66 lines
1.4 KiB
HTML
66 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CUD Air Quality</title>
|
|
<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">
|
|
<h1>Air Quality Monitoring System</h1>
|
|
<h2>Chulalongkorn University Demonstation School</h2>
|
|
<p>Where are you?</p>
|
|
<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>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|