-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
106 lines (96 loc) · 3.25 KB
/
contact.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
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
More info: h5bp.com/b/378 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Jayraj Jog</title>
<meta name="description" content="Contact Jayraj">
<!-- Mobile viewport optimized: h5bp.com/viewport -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons -->
<link href='https://fonts.googleapis.com/css?family=Crete+Round|Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div role="main">
<div id="container">
<div id="nav">
<ul id="menu">
<li class="menu_item">
<a href="index.html">Home</a>
</li>
<!-- <li class="menu_item">
<a href="projects.html">Projects</a>
</li> -->
<li class="menu_item">
<a href="resume.html">Resume</a>
</li>
<li id="current" class="menu_item">
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
<div id="content">
<header>
<h1>Contact Me</h1>
</header>
<p>Feel free to contact me if you want to talk shop or football (soccer)</p>
<header>
<h2>Social Networks</h2>
</header>
<p>
<ul class="social_list">
<li>
LinkedIn: <a href="http://www.linkedin.com/in/jayrajjog">http://www.linkedin.com/in/jayrajjog</a>
</li>
</ul>
</p>
<header>
<h2>Professional</h2>
</header>
<p>
<ul class="social_list">
<li>
Github: <a href="https://github.com/jogjayr">https://github.com/jogjayr</a>
</li>
<li>
StackOverflow: <a href="http://stackoverflow.com/users/635134/jayraj">http://stackoverflow.com/users/635134/jayraj</a>
</li>
</ul>
</p>
<header>
<h2>Email</h2>
</header>
<p>
jog AT jayraj dot net
</p>
</div>
</div>
</div>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-49465041-1', 'jayraj.net');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</body>
</html>