-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (51 loc) · 2.19 KB
/
contact.html
File metadata and controls
51 lines (51 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<title>Sri Bhat - Contact</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script src="js/bootstrap.min.js" type="text/javascript"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#topbar"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<p class="navbar-brand">Sri Bhat</p>
</div>
<div class="collapse navbar-collapse" id="topbar">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="biography.html">Biography</a></li>
<li><a href="resume-sample-works.html">Resume and Sample Works</a></li>
<li class="active"><a href="contact.html">Contact Me</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h2>Contact Me!</h2>
<div class="row">
<div class="col-sm-offset-1">
<h4><a href="mailto:sribhat31@gmail.com">Click here</a> to send me an email at sribhat31@gmail.com. I will respond
as soon as possible.</h4>
</div>
</div>
<div class="row">
<div class="col-sm-offset-1">
<h4>I also have a LinkedIn account -
<a href="http://www.linkedin.com/in/sri-bhat-427971129">come visit</a>!
</h4>
</div>
</div>
</div>
</div>
</body>
</html>