-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
38 lines (36 loc) · 1.6 KB
/
about.html
File metadata and controls
38 lines (36 loc) · 1.6 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
<!-- about.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Sensor Data Portal</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Sensor Dashboard</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="home.html">Home</a></li>
<li class="nav-item"><a class="nav-link active" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="team.html">Team</a></li>
<li class="nav-item"><a class="nav-link" href="view_1.php">Data</a></li>
<li class="nav-item"><a class="nav-link" href="exploration.html">Explorer</a></li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<h2>About This Project</h2>
<p class="lead">This platform was developed to provide a visual interface for monitoring environmental sensor data from various locations including CMU, UR, and Makerere. The system is currently running on simulated sensor inputs and aims to support real-time environmental insights in low-resource settings.</p>
<h5>Contact Information</h5>
<ul>
<li>Email: emugume@andrew.cmu.edu</li>
<li>Phone: +256 784 031622</li>
<li>Address: CMU Rwanda</li>
</ul>
</div>
</body>
</html>