This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
66 lines (60 loc) · 2.2 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home</title>
<script src="scripts/app.js"></script>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<h1>415 Project</h1>
<h2>An Exploratory Timeline Analysis of Climate Change and Factors that Impact It</h2>
<h3>Ranim Aljoudi, Shaela Khan, Ayushi Pagariya, Akshit Tripathi</h3>
<nav>
<ul>
<li onclick="window.location='index.html'">Home</li>
<li onclick="window.location='stats.html'">Statistics</li>
<li onclick="window.location='rawData.html'">Raw Data</li>
<li onclick="window.location='about.html'">About</li>
</ul>
<div>
<input type="radio" id="lightTheme" name="theme" value="lightTheme" checked onchange="changeTheme('light')">
<label for="lightTheme">Light</label>
<input type="radio" id="darkTheme" name="theme" value="darkTheme" onchange="changeTheme('dark')">
<label for="darkTheme">Dark</label>
</div>
</nav>
</header>
<main>
<table>
<thead>
<tr>
<th>Team Members</th>
<th>Contribution</th>
</tr>
</thead>
<tbody>
<tr>
<th> Akshit Tripathi </th>
<th> Website Development and Data visualization</th>
</tr>
<tr>
<th> Ayushi Pagariya </th>
<th> Research for appropriate data collection for climate change and documentation </th>
</tr>
<tr>
<th> Ranim Aljoudi </th>
<th> Data cleaning and refining</th>
</tr>
<tr>
<th> Shaela Khan </th>
<th> Implementation of Machine learning models</th>
</tr>
</tbody>
</table>
</main>
</body>
</html>