-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
168 lines (150 loc) · 7.72 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<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/c27d9168a3.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./assets/style.css">
<script src="script.js"></script>
<title>Luke McMurtrie's Portfolio</title>
</head>
<!--NavBar-->
<body>
<header>
<nav class="navbar is-black" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img src="">
</a>
</div>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"
data-target="portfolioBasicBar"></a>
<div id="portfolioBasicBar" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="index.html">
Home
</a>
<a class="navbar-item" href="my-work.html">
Portfolio
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
More
</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="contact.html">
Contact Me
</a>
</div>
</div>
</div>
</div>
<div class="navbar-end">
</div>
</nav>
</header>
<!--About Me section with photo and short bio-->
<section class="section has-background-grey-light" id="about">
<div class="section-heading">
<h3 class="title is-2">About Me</h3>
<figure class="image is-16by9">
<img class="is-rounded" src="./assets/Luke.jpg"
alt="A simple photo of myself self sitting outside with trees in the background">
</figure>
<h4 class="title is-5">Hi, I'm Luke McMurtrie!</h4>
<div class="container is-size-5">
<p>Thank you for taking the time to consider my portfolio! This is the second iteration of my
professional web-developer portfolio.
I'm 31 years old and currently call Richmond, Virginia my home. Although I was raised here, I
earned
my Bachelor's in English Literature and Writing from <em>Holy Cross College</em> in Notre Dame,
Indiana in
2012. I am currently attending a Full Stack Web Development program at the <em>University of
Richmond's School for Professional and Continuing Studies</em>. <br> <br>My passions include
music (I'm a self-taught guitar and synthesizer player), painting, photography, poetry... all things art really.
It may also be important to note my obsession with dinosaurs, lightsabers, Leonardo da Vinci,
technology, space, stand-up comedy, nature, philosophy, psychology, cooking, the elusive study
of
conciousness and what it means to be awake and aware.
Oh, and I'm a rookie chess player; thanks to one of my younger brothers who has me hooked but
constantly enjoys serving me <em>ice-cold</em>, <em>painful</em> and <em>frequent</em> losses.</p>
</div>
</div>
</section>
<!--Cards for Resume/GitHub/LinkedIn-->
<section class="section has-background-info">
<div class="container">
<h3 class="title has-text-centered is-size-4 has-background-info">Portfolio</h3>
<div class="columns mt-5 is-8 is-variable is-centered has-background-info">
<div class="column is-4-tablet is-3-desktop">
<div class="card">
<div class="card-image has-text-centered px-6">
<img src="./assets/resume.png" alt="A graphic image of my resume" />
</div>
<div class="card-content">
<p class="title is-size-5">Resume</p>
<p class="">
Thank you for your time!
</p>
</div>
<footer class="card-footer">
<p class="card-footer-item">
<a href="https://docs.google.com/document/d/1v7BX80isEoDSFCqmIovpUaDY_XMMKL5Pbwq9TQ921tI/edit?usp=sharing"
class="has-text-grey">View</a></a>
</p>
</footer>
</div>
</div>
<div class="div.column is-4-tablet is-3-desktop">
<div class="card">
<div class="card-image has-text-centered px-6">
<img src="./assets/github.png" alt="A grahic image of the GitHub logo">
</div>
<div class="card-content">
<p class="title is-size-5">GitHub Profile</p>
<p class="">
Click View to see more about myself and my programming works.
</p>
</div>
<footer class="card-footer">
<p class="card-footer-item">
<a href="https://github.com/LukeMcM89" class="has-text-grey">View</a>
</p>
</footer>
</div>
</div>
<div class="column is-4-tablet is-3-desktop">
<div class="card">
<div class="card-image has-text-centered px-6">
<img src="./assets/linkedin.png" alt="A screenshot of a day-planner web-application" />
</div>
<div class="card-content">
<p class="title is-size-5">LinkedIn</p>
<p class="">
Check out my profile!
</p>
</div>
<footer class="card-footer">
<p class="card-footer-item">
<a href="https://www.linkedin.com/in/luke-mcmurtrie-713784211/"
class="has-text-grey">View</a>
</p>
</footer>
</div>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer class="footer has-background-black">
<div class="content has-text-centered has-background-black">
<p class="has-text-white subtile is-size-4"><em> The expert at anything was once a beginner - Helen Hays</em><p>
<p class="has-text-white subtile is-size-4"><address=>E-mail: <a href="mailto:lmcmurtrie89@gmail.com">Lmcmurtrie89@gmail.com</a></address></p></p>
<p class="has-text-white subtile is-size-5">Cell: (804) 432 - 6049</p>
</div>
</footer>
</body>
</html>