-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (85 loc) · 4.62 KB
/
index.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<meta name="author" content="harkred">
<meta name="keywords" content="harkred, portfolio-page">
<title>Harkeerat Singh</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<a href="#welcome-section" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skill</a>
<a href="#projects" class="nav-link">Work</a>
<a href="#contacts" class="nav-link">Contact</a>
</nav>
<div id="welcome-section">
<h1>Hi, I am Harkeerat Singh</h1>
<p>A Full Stack Developer aspirant</p>
</div>
<div id="skills">
<h3>Skill-set</h3>
<ul id="skill-set">
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original-wordmark.svg" alt="HTML/HTML5" class="skill-img"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original-wordmark.svg" alt="CSS/CSS3" class="skill-img"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" alt="JavaScript" class="skill-img"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original-wordmark.svg" alt="Python" class="skill-img"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-original-wordmark.svg" alt="MySql" class="skill-img"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original-wordmark.svg" alt="git" class="skill-img"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original-wordmark.svg" alt="GitHub" class="skill-img"></li>
</ul>
</div>
<div id="projects">
<h3>Projects</h3>
<ul id="work">
<li class="project-tile" id="p1">
<a href="https://harkred.github.io/Original-Trombones/" target="_blank"><img src="./images/project1.png"><p>Original Trombones</p></a>
</li>
<li class="project-tile" id="p2">
<a href="https://harkred.github.io/bio-link/" target="_blank"><img src="./images/project2.png"><p>Bio Link</p></a>
</li>
<li class="project-tile" id="p3">
<a href="https://harkred.github.io/Quizee/" target="_blank"><img src="./images/project3.png"><p>Quizee</p></a>
</li>
</ul>
<div id="see-all-container">
<a href="https://github.com/harkred" target="_blank" id="see-all">See All</a>
</div>
</div>
<div id=contacts>
<h3>Let's work together....</h3>
<p>Do you like video-games?</p>
<ul id="profile">
<li><a href="https://github.com/harkred" target="_blank" id="profile-link"><img src="https://img.icons8.com/ios-glyphs/60/000000/github.png"/>GitHub</a></li>
<li><a href="https://www.linkedin.com/in/harkeerat-singh-a92530213/" target="_blank"><img src="https://img.icons8.com/ios-glyphs/60/000000/linkedin.png"/>Linkedin</a></li>
<li><a href="https://www.instagram.com/olds_spaghetti/" target="_blank"><img src="https://img.icons8.com/ios-filled/48/000000/instagram-new--v1.png">Instagram</a></li>
</ul>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>
</body>
</html>