-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (96 loc) · 3.88 KB
/
index.html
File metadata and controls
117 lines (96 loc) · 3.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Lucas Fitzgerald Portfolio</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>>
</head>
<body>
<div class="main_heading">
<h1>Lucas Fitzgerald Portfolio Website</h1>
</div>
<br>
<div class="about_me">
<h2>About Me</h2>
<ul>
<li><p>Second year electrical & electronic engineering student specialising in embedded systems at Curtin University</p></li>
<li><p>Experience using C in both embedded and non-embedded devices</p></li>
<li><p>Worked with MSP430-family chipsets in university</p></li>
</ul>
</div>
<br>
<div class="container1">
<div class="project_list">
<h2>My Project List</h2>
<ul>
<li><a href="https://emmsey-square.github.io">PCB Business Card</a></li>
<li><a href="business-card/index.html">Kings Cup</a></li>
<li><a href="business-card/index.html">To-Do List</a></li>
</ul>
</div>
<div class="interests">
<h2>My Current Interests</h2>
<ul>
<li>RISCV</li>
<li>Embedded Rust</li>
<li>Zig</li>
<li>Golang</li>
</ul>
</div>
</div>
<br>
<br>
<br>
<div class="blog_posts">
<h2>Blog Posts</h2>
<ul>
<h4><a href="business-card/index.html">Designing a PCB business card</a></h4>
<h4><a href="business-card/index.html">My experiments with Rust</a></h4>
</ul>
</div>
<br>
<div class="container2">
<div class="enquiry">
<h2>Send Me a Message</h2>
<form target="blank" action="https://formsubmit.co/f6867ed966882858206d20cea04a96b4" method="POST">
<input type="text" name="input_name" placeholder="Name" required>
<br>
<br>
<input type="text" name="input_company" placeholder="Company" required>
<br>
<br>
<textarea name="input_message" cols="50" rows="10" placeholder="Enter your message..." required></textarea>
<br>
<br>
<input type="submit" id="submit_button" value="Submit" />
</form>
</div>
<div class="contact_card">
<h2>Contact Card</h2>
<p>
Mobile: <br>+61432480375
<br>
<br>
Personal Email: <br> <a href="mailto:emmsey-square.dev@gmail.com">emmsey-square.dev@gmail.com</a>
<br>
<br>
School Email: <br> <a href="mailto:22206796@student.curtin.edu.au">22206796@student.curtin.edu.au</a>
<br>
<br>
Github: <br> <a href="https://github.com/emmsey-square">https://github.com/emmsey-square</a>
<br>
<br>
<br>
<button onclick="document.location='business-card/index.html'">Test</button>
</p>
</div>
</div>
<footer>
<p>Lucas Fitzgerald Developer Portfolio 2025</p>
</footer>
</body>
</html>