-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.4 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<title>Sri Bhat - Home</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 class="active"><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><a href="contact.html">Contact Me</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<div class="row">
<div class="col-lg-8">
<h1>Welcome!</h1>
<h3>This is a website designed to tell you some more about me
- my goals, my skills, and my projects. I hope it will be
informative.</h3>
<br/>
<blockquote>"The will to win, the desire to succeed, the urge to
reach your full potential...these are the keys that will
unlock the door to personal excellence." - Confucius</blockquote>
</div>
<div class="col-lg-4">
<img src="img/home-cs.jpg" alt="Binary representing idea of
computer science." height="350" width="350"/>
</div>
</div>
</div>
</div>
</body>
</html>