forked from UMD-INST377/Group-Project-Base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
47 lines (40 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
color: #333;
font-size: 24px;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 16px;
line-height: 1.5;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>About Shaking the Earth</h1>
<p>Shaking the Earth is a web application that explores global earthquake activity in 2020. The application displays
earthquake data from the United States Geological Survey (USGS) and allows users to search and filter the data.
Shaking the Earth uses the Leaflet JavaScript library to display the earthquake data on a map and the Bootstrap
framework for responsive design.</p>
<p><a href="index.html">Return to home page</a></p>
</body>
</html>