-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (91 loc) · 4.86 KB
/
index.html
File metadata and controls
102 lines (91 loc) · 4.86 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="index.html">Patrick Fain</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<span class="navbar-text mr-auto"></span>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">About <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 material">
<div>
<img class="img-fluid profilepic" src="images/profilepic.png" alt="Placeholder">
</div>
<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 (2 tours to Afghanistan). After leaving the Corps I went back to UNCC to finish my degree, finishing in 2016. My first introduction to coding came in my senior year, during my Instrumentation and Controls class, where I began messing around with Arduino (Micro-controllers coded written in C) and PLC controllers and Relay Ladder Logic (RsLogix 5000 by rockwell automation). 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 class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
<div class="card" style="width: 100%;">
<div class="card-body">
<div class="row">
<h4 class="card-title">Contact Me</h4>
</div>
<div class="row">
<div class="col-4">
<a href="https://github.com/fain704" target="_blank">
<img class="img-fluid" src="images/github.png" alt="github link">
</a>
</div>
<div class="col-4">
<a href="https://www.linkedin.com/in/patrick-fain-ab3752b1/" target="_blank">
<img class="img-fluid" src="images/linkedin.png" alt="linkedin link">
</a>
</div>
<div class="col-4">
<a href="https://stackexchange.com/users/11488063/patrick-fain" target="_blank">
<img class="img-fluid" src="images/overstack.png" alt="overstack link">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer fixed-bottom">
<div class="row">
<div class="col-12">
<figure class="text-muted" align="center">
© Copyright 2017 Patrick Fain
</figure>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
</body>
</html>