-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (86 loc) · 3.17 KB
/
about.html
File metadata and controls
92 lines (86 loc) · 3.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matthew P Keys</title>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<!-- TOP NAV SECTION - Hamburger, dark-mode, socials , contact -->
<div class="about-topnav">
<nav>
<div class="nav-left">
<div class="hamburger-container" onclick="hamburgeranimation">
<div class="hamburger" class="bar1"></div>
<div class="hamburger" class="bar2"></div>
<div class="hamburger" class="bar3"></div>
</div>
<div><button class="dark-toggle">Dark Mode toggle</button></div>
</div>
<div class="nav-center">
<ul class="socials">
<li><a href="#">Linkln</a></li>
<li><a href="#">Insta</a></li>
<li><a href="#">GitHub</a></li>
</ul>
</div>
<div class="nav-right">
<button class="contact">hireme</button>
</div>
</nav>
</div>
<!-- Side menu bar - connected to hamburger button -->
<div class="page-layout">
<nav class="side-nav">
<ul>
<li class="nav-side">
<button><a href="#">About</a></button>
</li>
<li class="nav-side">
<button><a href="./projects.html">Projects</a></button>
</li>
<li class="nav-side">
<button><a href="./resume.html">Resume</a></button>
</li>
<li class="nav-side">
<button><a href="./hireme.html">HireME</a></button>
</li>
<li class="nav-side">
<button><a href="#">X</a></button>
</li>
</ul>
</nav>
<!-- MAIN SECTION with image and information about me -->
<main>
<img
class="profile-picture"
src="./assests/IMG-20250209-WA0013.jpg"
alt="Image of me in Cape Town"
/>
<div class="about">
<h1>Matthew Keys</h1>
<p>
Hi! I’m a Junior Web Developer with a passion for building clean,
functional, and user-friendly digital experiences. I am currently
honing my skills in a full-stack software engineering bootcamp,
where I am transitioning my background in hospitality and teaching
into the tech space. This unique foundation has equipped me with a
strong focus on the user experience and clear communication, which
I’ve further sharpened through specialized UX/UI training. Welcome
to my online portfolio! Check out my latest projects and code
studies as I continue to build modern solutions for the web.
</p>
<button class="view-resume">
<a href="./resume.html">View Resume -></a>
</button>
</div>
<!-- Add featured projects here -->
<!-- ================================== -->
<!-- Add skills and experiences here -->
<!-- ================================== -->
</main>
</div>
</body>
</html>