-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (70 loc) · 3 KB
/
index.html
File metadata and controls
83 lines (70 loc) · 3 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
<!doctype html>
<html>
<head>
<!-- <link rel="stylesheet" type="text/css" href="assets/reset.css"> -->
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Patrick Fain</title>
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<header>
<div Class="header">
<h1 class="name">Patrick Fain</h1>
<a href="index.html">
<figure class="link">
ABOUT
</figure>
</a>
<a href="portfolio.html">
<figure class="link">
PORTFOLIO
</figure>
</a>
<a href="contact.html">
<figure class="link">
CONTACT
</figure>
</a>
</div>
</header>
<main>
<div id='main-container'>
<div class="wrapper">
<div>
<img class="profile-pic" src="images/profilepic.png" alt="This is a picture of me">
</div>
<h2>About Me</h2>
<div class="about-me">
<p>
I am 30 years old, and a graduate of UNCC's Mechanical Engineering Technology. I started my collegiate journey in 2005, and took a 6 year break, 4 of which I spent in the United States Marine Corps as an Infantry Marine. After leaving the Corps I went back to UNCC to finish my degree. My first introduction to coding came in my senior year, in my Instrumentation and Controls class, where I began messing around with Arduino (Code written in C) and PLC controllers and Relay Ladder Logic (fun stuff). I currently work for Schneider Electric in their BAS group (Building Automation Systems) creating user interfaces and some programming for HVAC and Lighting Control.
</p>
<br>
<p>
I am excited to dive deeper into the wonderful world of programming.
</p>
</div>
</div>
<div class="connect">
<h2>Connect with Me</h2>
<a href="https://github.com/fain704" target="_blank">
<img class="icons" src="images/github.png" alt="github link">
</a>
<a href="https://www.linkedin.com/in/patrick-fain-ab3752b1/" target="_blank">
<img class="icons" src="images/linkedin.png" alt="linkedin link">
</a>
<a href="https://stackexchange.com/users/11488063/patrick-fain" target="_blank">
<img class="icons" src="images/overstack.png" alt="overstack link">
</a>
</div>
</div>
</main>
<footer>
<div class="footer">
© Copyright 2017 Patrick Fain
</div>
</footer>
<script src=""></script>
</body>
</html>