-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.04 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>About Me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="Tutorials/OOP.html">OOP</a></li>
<li><a href="Tutorials/arrays-and-arraylists.html">Arrays and ArrayLists</a></li>
<li><a href="Tutorials/recursion.html">Recursion</a></li>
<li><a href="https://github.com/MathLuke/ICS4U0-2023">ICS Assignments</a></li>
<li><a href="isp.html">ISP</a></li>
<li><a href="sources.html">Sources</a></li>
</ul>
</nav>
<header>
<h1>Luke Mathieu</h1>
<div class="subtitle-text">
<a id="designer-text">Designer. </a><a id="developer-text">Developer. </a><a id="dreamer-text">Dreamer.</a>
</div>
</header>
<div class="contact-links">
<ul>
<li>
<img class="logo-image" src="gmail-logo.svg">
<a href="mailto:luke.mathieu@student.tdsb.on.ca">luke.mathieu@student.tdsb.on.ca</a>
</li>
<li>
<img class="logo-image" src="github-mark-white.svg">
<a href="https://github.com/MathLuke">MathLuke</a>
</li>
</ul>
</div>
<main>
<img src="Portrait.jpg">
<div class="Info-text">
<h2>Who am I?</h2>
<p>
My name is Luke Mathieu, and I am a grade 11 student at William Lyon Mackenzie. I am a talented student with a passion for programming. Outside of school, I engage in clubs, competitions, and challenges focused on competitive programming and cybersecurity. Recently, I competed in the Canadian Computing Competition, as well as the PicoCTF competition. I typically code in either Java or Python, although I am also familiar with C. Here, you can find a series of tutorials about Java programming, as well as a link to a Github repository of my work throughout the ICS4U0 course.
</p>
</div>
</main>
</body>
</html>