-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
151 lines (127 loc) · 4.92 KB
/
about.html
File metadata and controls
151 lines (127 loc) · 4.92 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Moyo - About</title>
<link rel="stylesheet" href="styles.css">
<style>
.about-section {
padding: 4rem 0;
}
.about-grid {
display: grid;
grid-template-columns: 300px 1fr;
gap: var(--grid-gap);
}
.profile-photo {
aspect-ratio: 1;
background-color: #f5f5f5;
overflow: hidden;
}
.profile-photo img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition-speed);
}
.profile-photo:hover img {
transform: scale(1.05);
}
.about-content h2 {
margin: 2rem 0 1rem;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 0.1em;
}
.about-content h2:first-child {
margin-top: 0;
}
.about-content p {
margin-bottom: 1rem;
}
.contact-links a {
display: inline-block;
margin-right: 1rem;
color: var(--primary-color);
text-decoration: none;
position: relative;
padding-bottom: 0.25rem;
}
.contact-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background-color: var(--primary-color);
transform: scaleX(0);
transition: transform var(--transition-speed);
}
.contact-links a:hover::after {
transform: scaleX(1);
}
@media (max-width: 768px) {
.about-grid {
grid-template-columns: 1fr;
}
.profile-photo {
max-width: 300px;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<a href="index.html" class="logo">Daniel Moyo<br>
<span class="normal-weight"> Earth science|GIS and Remote sensing</span></a>
<div class="nav-links">
<a href="index.html">Maps</a>
<a href="github.html">GitHub</a>
<a href="about.html"><strong>About</strong></a>
</div>
</nav>
</header>
<main>
<section class="about-section">
<div class="container">
<div class="about-grid">
<div class="profile-photo">
<img src="images\maps\profile\profile.jpg" alt="Daniel Moyo">
</div>
<div class="about-content">
<p> Daniel Moyo is a recent earth science(Geology) graduate with solid foundation
in geology and modern geospatial analysis. He has also developed skills in GIS,
remote sensing and geophysical data interpretation. He is also open to any freelance and job opportunities
</p>
<h2> skills</h2>
<ul>
<li>Field Geology</li>
<li>Petrography and geochemistry</li>
<li>Geophysical data interpretation(seismic, Magnetic, gravity)</li>
<li>cartography</li>
<li>GIS and remote sensing </li>
</ul>
<h2>Experience</h2>
<p> <b> Geologist(Government internship)</b>
<br>Geological Survey department, Mzuzu City (July 2025- present)
</p>
<h2>Education</h2>
<p>Bachelor of Science in Earth Sciences (Geology) 2024
<p>Malawi University of Science and Technology</p>
<h2>Contact</h2>
<div class="contact-links">
<p><a href="mailto:moyodanj@gmail.com">moyodanj@gmail.com</a> </p>
</div>
</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>