-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
73 lines (70 loc) · 2.33 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/style.css" />
<title>Tshidi Portfolio</title>
</head>
<body>
<div class="topnav">
<a href="index.html">HOME</a>
<a class="active" href="about.html">ABOUT</a>
<a href="skills.html">SKILLS</a>
<a href="resume.html" target="_blank">RESUME</a>
</div>
<section>
<div class="intro">
<h1>About me</h1>
<p>
Hello, My Name is Matshidiso Hlalele! I am a dedicated professional
with a strong foundation in scientific research and environmental
conservation, currently venturing into the realm of software
development.
</p>
<p>
As I make this transition, I aim to utilize my analytical abilities,
communication skills, and project coordination experience to
contribute to projects that are both technologically innovative and
environmentally sustainable. Additionally, I am keen on applying my
technical writing expertise to create and enhance documentation in the
web development space.
</p>
<p>
My unique combination of scientific and technological expertise
enables me to create solutions that are informed by science and driven
by a commitment to sustainability.
</p>
</div>
<div class="icons">
<a
href="https://github.com/Tshidycodes"
target="_blank"
aria-label="GitHub"
>
<ion-icon name="logo-github"></ion-icon>
</a>
<a
href="https://www.linkedin.com/in/matshidiso-hlalele-85b558200/"
target="_blank"
aria-label="LinkedIn"
>
<ion-icon name="logo-linkedin"></ion-icon>
</a>
<a href="mailto:hlaleletshidy@gmail.com" aria-label="Contact">
<ion-icon name="mail-unread-outline"></ion-icon>
</a>
</div>
</section>
<hr />
<footer>
<div class="footer">
<p>Developed with love 💟 by Tshidi Hlalele</p>
</div>
</footer>
<script
type="module"
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"
></script>
</body>
</html>