-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (117 loc) Β· 4.68 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matthew McCane</title>
<!-- Link to external stylesheet -->
<link href="./css/style.css" rel="stylesheet" />
<!-- Google Fonts preconnect and font link -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Old+Standard+TT&display=swap"
rel="stylesheet"
/>
<!-- Favicon -->
<link rel="icon" href="./images/selfie2.jpeg" type="image/x-icon" />
<!-- Meta tags for SEO and social media -->
<meta name="description" content="Matthew McCane Portfolio" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script
src="https://kit.fontawesome.com/35818c1ee2.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Header: Site navigation -->
<header>
<h1><a href="index.html">@itsMattMcCane</a></h1>
<nav>
<ul>
<li><a href="projects.html">projects</a></li>
<li>
<a
href="./Matthew-McCane-Resume-2024.pdf"
target="_blank"
rel="noopener noreferrer"
>resume</a
>
</li>
</ul>
</nav>
</header>
<!-- Main content -->
<main>
<div class="main-wrapper">
<div class="intro-container">
<img src="./images/selfie2.jpeg" alt="Matthew McCane" class="profile-image">
<h2>
<span class="emoji-hand" aria-label="Waving hand">👋</span>
<span class="greeting">Hello, I am Matthew McCane!</span>
</h2>
</div>
<div class="content-container">
<article>
<p class="welcome-content-title">
π Welcome to my Portfolio!<br> <i>Grit. Perseverance. Resiliency. Growth mindset.</i>
</p>
<p class="welcome-content">
I am a software engineer with a passion for creating innovative solutions to complex problems.
I have a strong foundation in computer science and a knack for learning new technologies.
I am currently seeking opportunities with rich learning experiences, mentorship, impactful challenging problems to solve, and
opportunities to grow and expand my skill set.
Please feel free to check out my social links below to learn more about me or to contact me at anytime! Thank you for stopping by! ππ»
</p>
<p class="welcome-content">
When I am not working, I enjoy math, daily fantasy sports, reading
books, playing video games, traveling, exercising and spending time with
my family. π¨βπ©βπ§βπ¦
</p>
</article>
</div>
</div>
</main>
<!-- Footer: Copyright and social links -->
<footer>
<div class="left-content">
<p class="footer-content">
<a href="https://matthewmccane.blogspot.com" target="_blank" rel="noopener noreferrer"
>Matthew McCane</a
>
Β© 2024
</p>
</div>
<div class="right-content">
<a href="https://medium.com/@DakuwoN" target="_blank" rel="noopener noreferrer">
<span class="fa-brands fa-medium" aria-label="Medium"></span>
</a>
<a
href="https://www.reddit.com/user/Still-Pudding-1638"
target="_blank"
rel="noopener noreferrer"
>
<span class="fa-brands fa-reddit" aria-label="Reddit"></span>
</a>
<a href="https://www.instagram.com/itsmattmccane/" target="_blank" rel="noopener noreferrer">
<span class="fa-brands fa-instagram" aria-label="Instagram"></span>
</a>
<a href="https://www.linkedin.com/in/matthewmccane/" target="_blank" rel="noopener noreferrer">
<span class="fa-brands fa-linkedin" aria-label="LinkedIn"></span>
</a>
<a href="https://twitter.com/itsMattMcCane" target="_blank" rel="noopener noreferrer">
<span class="fa-brands fa-x-twitter" aria-label="Twitter"></span>
</a>
<a href="https://GitHub.com/DakuwoN" target="_blank" rel="noopener noreferrer">
<span class="fa-brands fa-github" aria-label="GitHub"></span>
</a>
</div>
</footer>
<!-- JavaScript at the end of the body for better performance -->
<script src="/js/app.js"></script>
</body>
</html>