-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Feltham - Portfolio</title>
</head>
<body>
<header>
<h1>Daniel Feltham</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#articles">Articles</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hello! I'm a software engineer with a passion for turning ideas into code. Armed with a dual degree in Engineering (Honours) and Commerce from Monash University, I've been navigating the digital realm since 2021. By day, I wrangle data at Quantium. By night, I'm a digital polygloth, ready to tackle anything from web and app development to crafting virtual worlds in games.</p>
<p>When I'm not deep in lines of code, you might find me penning articles about my personal development journey or sharing my perspectives on technology and software engineering practices. In my free time though, I enjoy exploring the outdoors and traveling. And yes, this bio was co-authored with an AI - because even software engineers need a little help sometimes! For a more formal rundown of my professional journey, feel free to peruse my <a href="resume.pdf" target="_blank">resume</a> or <a href="https://www.linkedin.com/in/daniel-feltham/" target="_blank">LinkedIn</a>.</p>
</section>
<section id="articles">
<h2>Articles</h2>
<ul>
<li><a href="articles/myFirstArticle/myFirstArticle.html">My First Article</a></li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li><a href="projects/portfolioWebsite/caseStudy.html">Portfolio Website</a></li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>I'm always open to discussing new projects, creative ideas, or opportunities to be part of your visions. Feel free to reach out to me at <a href="mailto:[email protected]">[email protected]</a>.</p>
<p>You can also find me on:</p>
<ul>
<li><a href="https://www.linkedin.com/in/daniel-feltham/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/danfeltham" target="_blank">GitHub</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Daniel Feltham. All rights reserved.</p>
</footer>
</body>
</html>