-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
108 lines (92 loc) · 3.73 KB
/
Copy pathcontact.html
File metadata and controls
108 lines (92 loc) · 3.73 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
103
104
105
106
107
108
<!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" />
<!--SEO stuff-->
<meta name="robots" content="index,follow">
<link rel="canonical" href="https://www.joerinaldijohnson.com/contact.html">
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/cc083b26f1.js" crossorigin="anonymous"></script>
<!-- Consent Manager -->
<script src="https://config.metomic.io/config.js?id=prj:4141e047-196f-4809-94c3-52c49eac86da" crossorigin charset="utf-8"></script>
<script src="https://consent-manager.metomic.io/embed.js" crossorigin charset="utf-8"></script>
<!-- Imported styles -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles -->
<link href="styles.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-180169102-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-180169102-1');
</script>
<!-- Unmask script -->
<script src="unmask.js"></script>
<title>Contact Joe</title>
</head>
<body>
<div class="text-center">
<!-- Navigation block -->
<ul class="nav justify-content-center navbar-dark bg-primary pt-2 pb-2">
<li class="nav-item">
<a class="nav-link" href="index.html"><i class="fas fa-home"></i></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="video.html">Video</a>
</li>
<li class="nav-item">
<a class="nav-link" href="articles.html">Writing</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
<div class="page-content">
<h1>Contact</h1>
<p class="d-md-block"> Ways to get in touch with me.
<img src="images/holiday-portrait4.jpg" alt="portrait of Joe Rinaldi Johnson" class="rounded float-right img-fluid mb-5">
</p>
<hr>
<h3>LinkedIn</h3>
<a style="font-size: 2rem" href="https://www.linkedin.com/in/joerinaldijohnson/"><i class="fab fa-linkedin"></i></a>
<hr>
<h3>Twitter</h3>
<a style="font-size: 2rem" href="https://twitter.com/joerj"><i class="fab fa-twitter-square"></i></a>
<hr>
<h3>Email</h3>
This button will reveal my email to humans or post-singularity intelligent bots.
<br>
<br>
<!-- Reveal email using javascript-->
<form onsubmit="unmask(); return false;">
<div id="btn">
<input type="submit" value="Reveal my email" class="btn btn-primary btn-sm text-white">
</div>
<p id="eml"></p>
</form>
<hr>
<br>
<br>
<br>
<br>
</div>
<!-- Footer -->
<footer class="padding-default bg-dark">
<p>© 2020. Made with ❤ in London.
<!--Consent manager-->
<br>
<a href="javascript:window.Metomic('ConsentManager:show')" class="cookies">Manage cookies</a>
</p>
<a href="https://www.linkedin.com/in/joerinaldijohnson/"><i class="fab fa-linkedin white-style"></i></a>
<a href="https://twitter.com/joerj"><i class="fab fa-twitter-square white-style"></i></a>
</footer>
</body>
</html>