-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="EUwjvIWTdFfO_8cV2Amxca99V13GzRVwpQdkr5e4Ssw" />
<meta name="description" content="A webpage showcasing EMBRACE Interactives for ionospheric studies.">
<meta name="keywords" content="EMBRACE, Interactives, GitHub Pages, Ionosphere">
<meta name="author" content="Tesfay Tesfu">
<meta name="google-site-verification" content="your-verification-code" />
<title>EMBRACE Interactives</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px;
text-align: center;
}
main {
padding: 20px;
}
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
a {
color: #4CAF50;
}
</style>
</head>
<body>
<header>
<h1>Welcome to EMBRACE Interactives</h1>
</header>
<main>
<p>This webpage is dedicated to showcasing interactive tools and resources for ionospheric studies. Explore the tools below:</p>
<ul>
<li><a href="tool1.html">Tool 1: Visualizing Ionospheric Disturbances</a></li>
<li><a href="tool2.html">Tool 2: Geomagnetic Storm Analysis</a></li>
<li><a href="tool3.html">Tool 3: Total Electron Content (TEC) Maps</a></li>
</ul>
<p>For more details, visit our <a href="https://github.com/Tesfay-Tesfu/EMBRACE-Interactives">GitHub Repository</a>.</p>
</main>
<footer>
<p>© 2024 Tesfay Tesfu. All rights reserved.</p>
</footer>
</body>
</html>