-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
181 lines (167 loc) · 5.54 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
169
170
171
172
173
174
175
176
177
178
179
180
181
<!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"
/>
<!-- Font Awesome 5 -->
<script
src="https://kit.fontawesome.com/de7cf715d2.js"
crossorigin="anonymous"
></script>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Michel R Morin</title>
</head>
<body data-spy="scroll" data-target="#main-nav" id="home">
<nav
class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark"
id="main-nav"
>
<a href="#home" class="navbar-brand">
<img
src="img/michel.jpg"
class="rounded-circle mr-2 img-fluid"
alt="Michel Picture"
width="24"
height="24"
/>
<span class="align-middle">Michel R Morin</span></a
>
<button
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
</ul>
</div>
</nav>
<header id="landing-section">
<div id="landing-inner" class="text-left d-flex align-items-center">
<div class="container text-center text-lg-left py-5">
<img
src="img/michel.jpg"
class="rounded-circle float-lg-left mr-2"
alt="Michel Picture"
width="105"
height="105"
/>
<h1 class="display-4">
<!-- Add my picture to the left of name and title below -->
Michel R Morin
</h1>
<p class="text-secondary">
Senior Cloud DevOps Developer
</p>
<hr class="my-4 w-50 ml-lg-0" />
<a
href="https://www.linkedin.com/in/michelmorin77"
target="_blank"
class="text-dark mr-2"
>
<i class="fab fa-2x fa-linkedin"></i
></a>
<a
href="https://github.com/michelmorin/"
target="_blank"
class="text-dark mr-2"
>
<i class="fab fa-2x fa-github"></i
></a>
<a
href="https://facebook.com/michelmorin77"
target="_blank"
class="text-dark mr-2"
>
<i class="fab fa-2x fa-facebook"></i>
</a>
<a href="mailto:[email protected]" class="text-dark">
<i class="fas fa-2x fa-envelope"></i
></a>
</div>
</div>
</header>
<!-- About -->
<section id="about" class="bg-dark text-light py-5" style="height: 800px;">
<div class="container">
<div class="row">
<div class="col text-left">
<h1 class="display-4">About</h1>
<p class="lead">
A Senior Cloud DevOps Developer with 20+ years of experience, specializing in software development, Kubernetes, AWS, and observability. A strong history of leading high performance teams to build development pipelines, product development, and infrastructure as code environments for enterprise products.
</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer" class="bg-primary text-light"">
<div class="container">
<div class="row">
<div class="col text-center py-4">
<!-- <h3>Footer</h3> -->
<p>
Copyright ©
<span id="year"></span>
</p>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"
></script>
<script>
// Get the current year for the copyright
$('#year').text(new Date().getFullYear());
// Init Scrollspy
$('body').scrollspy({ target: '#main-nav' });
// Smooth Scrolling
$('#main-nav a').on('click', function (event) {
if (this.hash !== '') {
event.preventDefault();
const hash = this.hash;
$('html, body').animate(
{
scrollTop: $(hash).offset().top,
},
800,
function () {
window.location.hash = hash;
}
);
}
});
</script>
</body>
</html>