-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_me.html
118 lines (93 loc) · 4.17 KB
/
contact_me.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Frank Meola | Contact Me</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Frank Meola">
<link rel="shortcut icon" href="/static/images/favicon.ico">
<!-- Bootstrap core CSS -->
<link href="/static/stylesheets/bootstrap.min.css" rel="stylesheet" >
<link href="/static/stylesheets/design.css" rel="stylesheet" >
<script src="/static/javascripts/html5.js"></script>
<script src="/static/javascripts/respond.js"></script>
</head>
<body>
<!-- NAV -->
<div class="bs-component">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-inverse-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><img src="/static/images/logo_grey_transparent_75_40.png")" border="0" style="padding:0;margin:0;"/></a>
</div>
<div class="navbar-collapse collapse navbar-inverse-collapse">
<ul class="nav navbar-nav">
<li><a href="/index.html">Home</a></li>
<li><a href="/blog/index.html" title="Things I am coding, writing, or thinking.">Blog</a></li>
<li><a href="/inputstream/index.html" title="Things I am reading, watching, or reviewing.">Input Stream</a></li>
<li><a href="/about_me.html">About Me</a></li>
<li><a href="/contact_me.html">Contact Me</a></li>
</ul>
</div>
</div>
<div class="container">
<p><!--
template = page
title = Contact Me
--></p>
<h1>Can I help you?</h1>
<p>If you have a specific question or are curious if there is a problem that I might be able help with please contact me through twitter.</p>
<h1>Contact Info</h1>
<p>Twitter: <a href="http://www.twitter.com/frank_meola">@frank_meola</a></p>
<br/><hr />
</div>
<!-- FOOTER -->
<div class="container">
<footer>
<p style="text-align:center;">Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.</p>
<p class="pull-left">© 2017 Frank Meola</p>
<p class="pull-right"><a href="#">Back to top</a></p>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="/static/javascripts/bootstrap.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-48719044-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'frank-meola'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<script>
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement('style')
msViewportStyle.appendChild(document.createTextNode('@-ms-viewport{width:auto!important}'))
document.querySelector('head').appendChild(msViewportStyle)
}
</script>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
</body>
</html>