-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
57 lines (51 loc) · 3.31 KB
/
home.php
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
<html>
<?php require("header.php") ?>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="home.php" id="scale" class="navbar-brand" >{Vikas Joshi}</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a href="home.php">Home</a>
</li>
<li>
<a href="resume.php">Resume</a>
</li>
<!--<li><a href = "projects.php">Projects</a></li>-->
</ul>
</div>
</div>
</nav>
<div class="container" id="fade" style="margin-top:65px">
<div class="row well well-lg">
<div class="col-lg-3">
<div class="thumbnail" style="margin-right: auto; margin-left: auto; max-width: 260px; max-height: 365px;">
<img src="images/vikas.jpg" alt="Vikas Joshi" height="290px" width="245px">
<div class="caption">
<p><i>"The future depends on what you do today." - Mahatma Gandhi</i></p>
</div>
</div>
</div>
<div class="col-lg-9">
<h1>Vikas Joshi</h1>
<p style="font-size:15px">One of my goals in life is to play an important role in the creation of new innovative
software that will have a significant impact on our technological advancements. I am a student at the University of
Waterloo pursuing a Bachelor's degree in Mathematics. Programming has always been a passion of mine.
I'm highly dedicated to the work I do and very eager to learn. My interests include software, web and android
development. Please have a look at my <a href="resume.pdf" target="_blank"><b>resume</b></a> and email me if you're looking
to hire a developer or have any questions.</p>
</div>
</div>
</div>
<?php require("footer.php") ?>
</body>
</html>