-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.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
<html>
<head>
<title>Jay Ultra Secret Profile (not for Tinder)</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
/>
<link rel="stylesheet" href="style.css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="container">
<div class="white-card">
<h1>Hello, I'm Jay!</h1>
<img
class="img-circle"
src="images/profile_pic.jpg"
alt="Secret Profile Picture"
width="100"
height="100"
/>
<p>
I love video games (playing and making them), assembling PCs, 3D
printing, sci-fi books, tv shows, painting, walking my dog, hiking,
etc... And programming, now.
</p>
<a class="button" href="https://www.youtube.com/watch?v=ZKJUMMCJvGM">
My (most recent) favorite game</a
>
</div>
<div class="white-card">
<h2>You can find me right there:</h2>
<ul class="list-inline">
<li>
<a href="https://twitter.com/MonsieurNeku">
<i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="https://www.linkedin.com/in/jcormier/">
<i class="fab fa-linkedin-in"></i
></a>
</li>
<li>
<a href="http://discord.com"><i class="fab fa-discord"></i></a>
</li>
</ul>
</div>
</div>
</body>
</html>