-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
86 lines (76 loc) · 2.44 KB
/
github.html
File metadata and controls
86 lines (76 loc) · 2.44 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Moyo - GitHub Projects</title>
<link rel="stylesheet" href="styles.css">
<style>
.github-section {
padding: 4rem 0;
}
.github-grid {
display: grid;
gap: 2rem;
}
.github-card {
background: #f5f5f5;
padding: 2rem;
border-radius: 4px;
transition: transform var(--transition-speed);
text-decoration: none;
color: var(--primary-color);
}
.github-card:hover {
transform: translateX(1rem);
background: #ececec;
}
.github-card h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.github-card p {
font-size: 0.9rem;
opacity: 0.8;
}
</style>
</head>
<body>
<header>
<nav class="container">
<a href="index.html" class="logo">Daniel Moyo<br>
<span class="normal-weight"> Geologist|GIS and Remote sensing</span></a>
<div class="nav-links">
<a href="index.html">Maps</a>
<a href="github.html"><strong>GitHub</strong></a>
<a href="about.html">About</a>
</div>
</nav>
</header>
<main>
<section class="github-section">
<div class="container">
<div class="github-grid">
<a href="https://github.com/danjgmoyo/qgis" class="github-card">
<h3>QGIS</h3>
<p>Collection of QGIS processing models ,styles, and scripts</p>
</a>
<a href="https://github.com/danjgmoyo/EE_Notebooks" class="github-card">
<h3>Google Earth engine motebooks</h3>
<p>Google earth engine python notebooks</p>
</a>
</div>
</div>
</section>
</main>
<footer>
<div class="container footer-content">
<div>© 2025 Daniel Moyo</div>
<div>
<a href="mailto:moyodanj@gmail.com">Email<a> |
<a href="https://www.linkedin.com/in/daniel-moyo-9000b8228/">LinkedIn</a>
</div>
</div>
</footer>
</body>
</html>