-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
93 lines (89 loc) · 4.51 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Michael Morrissey's Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="About Michael Morrissey - web developer.">
<link rel="icon" href="/images/favicon.svg">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header__content">
<nav class="nav">
<div class="nav__logo-container">
<a href="/" class="nav__logo">
<img class="nav__logo-item" src="images/profile.webp" alt="Profile photo of Michael Morrissey">
MICHAEL MORRISSEY
</a>
</div>
<input type="checkbox" id="nav__toggle" tabindex="-1" aria-label="Navigation menu toggle">
<label for="nav__toggle" class="nav__toggle-label">
<svg class="nav__menu" viewBox="0 0 122.879 104.609">
<use href="images/hamburger-menu.svg#main"></use>
</svg>
<svg class="nav__close" viewBox="0 0 121.31 123.876">
<use href="images/close.svg#main"></use>
</svg>
</label>
<a href="/" class="nav__item">
HOME
</a>
<a href="projects.html" class="nav__item">
PROJECTS
</a>
<a href="about.html" class="nav__item">
ABOUT
</a>
<a href="contact.html" class="nav__item">
CONTACT
</a>
</nav>
</div>
</header>
<main class="about main__content">
<h1 class="about__heading">About Me</h1>
<img class="about__image" src="images/profile.webp" alt="Profile photo of Michael Morrissey">
<div>
<p>
Hi - my name is Michael Morrissey and I am a web programming student at NSCC set to graduate in the spring of 2022. Thanks for checking out my portfolio.
</p>
<p>
I have a background in business administration with a degree from Memorial University; before the pandemic, I spent several years remotely managing a small local travel company. I've always had a keen interest in technology, and in addition to managing the company's small team, I took on handling all facets of their information technology, integrating the organization's business needs with various pieces of software.
</p>
<p>
I spend my free time outdoors whenever possible, whether hiking, biking, paddling, or camping; in the winter, you'll often find me curling, reading a book, or playing board games and video games.
</p>
<p>
I'm excited to gain hands-on experience through a work term in software development, and then look forward to building a career in the industry. I believe that my combination of programming skills, business knowledge, and real-world management experience would make me a great asset to any team and I'd be happy to discuss these in further detail. Please visit my contact page if you'd like to get in touch.
</p>
</div>
</main>
<footer class="footer">
<div class="footer__content">
<p class="copyright">© Michael Morrissey 2021</p>
<ul class="links">
<li class="links__item">
<a href="Michael Morrissey Resume.pdf" target="_blank">
<img src="images/pdf-files.svg" alt="PDF icon" class="links__image" />
Resume
</a>
</li>
<li class="links__item">
<a href="https://www.linkedin.com/in/michael-morrissey-147a5186/" target="_blank">
<img src="images/linkedin.svg" alt="LinkedIn logo" class="links__image" />
LinkedIn
</a>
</li>
<li class="links__item">
<a href="https://github.com/MichaelAM" target="_blank">
<img src="images/github.svg" alt="GitHub logo" class="links__image" />
GitHub
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>