-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (72 loc) · 3.36 KB
/
index.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
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tortoise</title>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', sans-serif;
background: linear-gradient(to right, #66bb6a, #42a5f5);
color: #000000;
margin: 0;
padding: 0;
text-align: center;
}
header {
padding: 25px;
color: white;
}
.logo {
position: absolute;
top: 10px;
left: 20px;
width: 200px;
height: auto;
}
.title { font-size: 36px; margin: 15px 0; font-family: 'Lato', sans-serif; }
.subtitle { font-size: 18px; margin: 10px 0; }
.team-members { font-size: 12px; margin-top: 15px; font-style: italic; }
nav { display: flex; justify-content: center; background-color: #004d40; padding: 15px; }
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
nav ul li a { text-decoration: none; color: white; font-size: 16px; padding: 15px 15px; }
nav ul li a:hover { background-color: #00695c; border-radius: 5px; }
.submenu { display: none; position: absolute; background-color: #00695c; border-radius: 5px; list-style: none; margin-top: 10px; }
nav ul li:hover .submenu { display: block; }
.submenu li a { font-size: 14px; padding: 10px; }
.sectionloc { width: 80%; max-width: 800px; margin: 30px auto; padding: 20px; background-color: #f0f4c3; border-radius: 10px; font-size: 16px; }
footer { background-color: #00796b; color: white; padding: 10px; font-size: 14px; }
</style>
</head>
<body>
<header>
<img src="tortoisenobackground.png" alt="Logo" class="logo">
<h1 class="title">Galapagos Islands Testudinidae Macroevolution</h1>
<h2 class="subtitle">Macro-evolutionary Patterns of Giant Tortoises</h2>
<p class="team-members">Project Done By: Paige Cherry, Sara Cielaszyk, Hubert Kasprzycki and Eleanor Tuck</p>
<nav>
<ul>
<li><a href="index2.html">Home</a></li>
<li>
<a href="#">Data</a>
<ul class="submenu">
<li><a href="length_data.html">Length Data</a></li>
<li><a href="island_data.html">Island Data</a></li>
<li><a href="diversification_rates.html">Diversification Rates</a></li>
</ul>
</li>
<li><a href="research_paper.pdf" target="_blank">Research Paper</a></li>
</ul>
</nav>
</header>
<section class="sectionloc">
<h2>Our Executive Summary</h2>
<p>This project investigates the macro-evolutionary patterns of giant tortoises... (content unchanged)</p>
</section>
<footer>
<p>© 2025 Capstone Project GITM</p>
<p><strong>Acknowledgements:</strong> Special thanks to our professors, advisors, and the University of Arizona for supporting our project. We also acknowledge the Galápagos Conservancy and researchers whose data and insights were invaluable.</p>
</footer>
</body>
</html>