Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
haileymeadow authored Aug 19, 2024
1 parent 7338ed5 commit b844765
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MycroMaps</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f4f4f4;
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
background: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
header {
text-align: center;
padding-bottom: 20px;
}
header img {
max-width: 100%;
height: auto;
}
h1, h2, h3 {
color: #333;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>🍄 MycroMaps</h1>
<img src="https://github.com/haileymeadow/MycroMaps/blob/main/docs/Knowledge%20Base/MycroMaps.png" alt="MycroMaps">
</header>

<h2>Welcome to MycroMaps!</h2>
<p>This repository contains datasets, scripts, and resources for analyzing Fungi and Protoctista species using R and GIS tools.</p>

<h3>Links to Documents in `docs` Directory</h3>
<ul>
<li><a href="docs/Knowledge%20Base/README.md">Knowledge Base README</a></li>
<!-- Add more links as needed -->
</ul>
</div>
</body>
</html>

0 comments on commit b844765

Please sign in to comment.