Skip to content

Commit

Permalink
Minor changes, update resume
Browse files Browse the repository at this point in the history
  • Loading branch information
ssethia2 committed Feb 7, 2020
1 parent 733e1f0 commit a3d9a89
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Binary file modified files/Satvik_Sethia_Resume.pdf
Binary file not shown.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<meta charset = "utf-8">
<link rel="icon" href="favicon/ss.ico" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Josefin Slab">
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="js/main.js"></script>
<title>Satvik Sethia</title>
<style>
<title>Satvik Sethia</title>
<style>
.title_image {
padding: 0;
margin: 0;
Expand Down Expand Up @@ -65,7 +65,7 @@
}
.navbar-text {
padding-left: 0.5em;
color: white;
color: white;
cursor: pointer;
}
.nav-sep {
Expand Down Expand Up @@ -135,7 +135,7 @@
<img class="socicon f-soc" src="socicon/facebook.svg">
</a>
<!-- </div> -->
</div>
</div>
</div>
</div>
</body>
Expand Down
14 changes: 7 additions & 7 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
function main() {
$(".text").hide();

$(".text").fadeIn(4000);

$("#nav-home").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $(".main").offset().top
}, 2000);
}, 1000);
});

$("#nav-about").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $(".c_bio").offset().top
}, 2000);
}, 1000);
});

$("#nav-link").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $(".resume").offset().top
}, 2000);
}, 1000);
});
}

$(document).ready(main);
$(document).ready(main);

0 comments on commit a3d9a89

Please sign in to comment.