-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.shtml
78 lines (73 loc) · 2.36 KB
/
contact.shtml
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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<!--#include virtual="/inc/header.html" -->
<title>Contact - JJ Gray</title>
</head>
<body class="d-flex flex-column h-100">
<!--#include virtual="/inc/navbar.html" -->
<main>
<section class="bg-dark py-4 text-light">
<div class="container">
<h1>Contact information</h1>
</div>
</section>
<section>
<div class="container mt-3">
<p>
If you alredy have contact information for me, feel free to use
that. If not, please use one of the platforms provided below.
</p>
</div>
<div class="container mt-3">
<div class="list-group">
<a
href="https://github.com/jjgry"
class="list-group-item list-group-item-action"
>
<i class="fab fa-fw fa-github mr-1"></i>
GitHub
</a>
<a
href="https://www.linkedin.com/in/jjgry/"
class="list-group-item list-group-item-action"
>
<i class="fab fa-fw fa-linkedin mr-1"></i>
LinkedIn
</a>
<a
href="mailto:contact@jjgry.com"
class="list-group-item list-group-item-action"
>
<i class="fas fa-fw fa-envelope mr-1"></i>
Email
</a>
<a
href="https://m.me/gray.johnjoseph"
class="list-group-item list-group-item-action"
>
<i class="fab fa-fw fa-facebook-messenger mr-1"></i>
Messenger
</a>
<a
href="https://instagram.com/jjgry/"
class="list-group-item list-group-item-action"
>
<i class="fab fa-fw fa-instagram mr-1"></i>
Instagram
</a>
<a
href="https://twitter.com/jjofthegray"
class="list-group-item list-group-item-action"
>
<i class="fab fa-fw fa-twitter mr-1"></i>
Twitter
</a>
</div>
</div>
</section>
</main>
<!--#include virtual="/inc/footer.html" -->
<!--#include virtual="/inc/end-scripts.html" -->
</body>
</html>