-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (100 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description"
content="Nicolas St-Amour's personal website" />
<title>Nicolas St-Amour</title>
<link rel="stylesheet"
href="css/main.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="apple-touch-icon"
sizes="180x180"
href="img/apple-touch-icon.png">
<link rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon-32x32.png">
<link rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon-16x16.png">
<link rel="manifest"
href="/site.webmanifest">
<link rel="mask-icon"
href="img/safari-pinned-tab.svg"
color="#5bbad5">
</head>
<body>
<div id='content'>
<img src="img/nick-720px.jpeg"
srcset="img/nick-720px.jpeg 720w, img/nick-360px.jpeg 360w, img/nick-180px.jpeg 180w"
alt="Nicolas St-Amour"
id="face"
class="rounded-image" />
<div id="info">
Hey, I'm Nick.<br /><br />
Born in the late seventies, I grew up on the south shore of Montréal, Québec; where I still reside. I have three
beautiful kids (2 daughters and a son). I play ice hockey, am known to ride a snowboard every now and then and I
always appreciate a good beer with friends; specially those I brew myself.<br /><br />
<div id="facts">
Random facts
<div class="fact">
I have an identical twin brother
</div>
<div class="fact">
I have 2 cats and a golden retriever
</div>
<div class="fact">
My first console was an Intellivision
</div>
<div class="fact">
Quake got me hooked on computers
</div>
<div class="fact">
My first programming language was Turbo Pascal
</div>
<div class="fact">
St-Amour translates to Saint Love in French
</div>
</div>
<div>Don't hesitate to get in touch with me!</div>
<div id="links">
<a href="https://www.linkedin.com/in/stamoun/"
target="_blank"
aria-label="Nicolas St-Amour's Linked In Profile"
class="link">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/stamoun"
target="_blank"
aria-label="Nicolas St-Amour's GitHub Profile"
class="link">
<i class="fab fa-github"></i>
</a>
<a href="./Nicolas St-Amour Resume.pdf"
target="_blank"
aria-label="Nicolas St-Amour's Resume"
class="link">
<i class="fa-solid fa-file"></i>
</a>
<a href="mailto:[email protected]"
target="_blank"
aria-label="Nicolas St-Amour's Email"
class="link">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<div id="footer">© Nicolas St-Amour 2023 •
hosted with ❤️ on
<a href="https://www.github.com/stamoun/stamoun.github.io"
target="_blank"
aria-label="stamoun.com GitHub Repository">GitHub</a>
</div>
</body>
</html>