Skip to content

Commit

Permalink
finalPortfolio
Browse files Browse the repository at this point in the history
  • Loading branch information
iammshahbaz committed Feb 9, 2024
1 parent c6e1948 commit fcb66dd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<li><a href="#skills" class="menu-btn nav-link skills">Skills</a></li>
<li><a href="#projects" class="menu-btn nav-link projects">Projects</a></li>
<li><a href="#contact" class="menu-btn nav-link contact">Contact</a></li>
<li><a href="https://drive.google.com/file/d/1SfK1K1hyTbCK4CDuBtf1T1jxm1r4yJ3i/view?usp=sharing" target="_blank" download="Shahbaz-Ahmad-Resume.pdf" class="menu-btn nav-link resume" id="resume-link-1" >Resume</a></li>
<li><a href="./images/Shahbaz-Ahmad-Resume.pdf" target="_blank" download class="menu-btn nav-link resume" id="resume-link-1">Resume</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
Expand Down Expand Up @@ -64,7 +64,7 @@ <h2 class="title">About me</h2>
Generative AI is seeking opportunities to work in organizations that can challenge their
abilities as a web developer. They are eager to undertake challenging projects and deliver
exceptional results.</p>
<button id="resume-button-2"><a style="color: #fff;" href="https://drive.google.com/file/d/1SfK1K1hyTbCK4CDuBtf1T1jxm1r4yJ3i/view?usp=sharing" target="_blank" class="resume-link-2">Resume</a></button>
<button id="resume-button-2"><a style="color: #fff;" href="./images/Shahbaz-Ahmad-Resume.pdf" target="_blank" download class="resume-link-2" >Resume</a></button>
</div>
</div>
</div>
Expand Down
11 changes: 11 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,17 @@ $(document).ready(function(){
}
}
});
document.getElementById('resume-link-1').addEventListener('click', function() {
window.open(
"https://drive.google.com/file/d/1SfK1K1hyTbCK4CDuBtf1T1jxm1r4yJ3i/view?usp=sharing"
);
});

document.getElementById('resume-button-2').addEventListener('click', function() {
window.open(
"https://drive.google.com/file/d/1SfK1K1hyTbCK4CDuBtf1T1jxm1r4yJ3i/view?usp=sharing"
);
});


});

0 comments on commit fcb66dd

Please sign in to comment.