-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.html
114 lines (97 loc) · 3.94 KB
/
skills.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Trirong">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet" />
<title>Skills & Languages</title>
<link rel="stylesheet" type="text/css" href="css/skills.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<header>
<nav>
<ul id="navbar" >
<li><a href="index.html" >Home</a></li>
<li><a href="skills.html" class="active">Skills</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="certifications.html">Certifications</a></li>
<li><a href="contact.html">Contact</a></li>
<a href="#" id="close"><i class="far fa-times"></i></a>
</ul>
</nav>
<div id="mobile">
<i id="bar" class="fas fa-outdent"></i>
</div>
</header>
<section class="skills section-p1" id="skills-section">
<div class="section-headings">
<h2 class="section-h2">Skills & Languages</h2>
<p class="section-description">Proficient in Java, Kotlin, HTML, CSS, and JavaScript. Experienced in full-stack web development with Spring Boot and React.js. Adept in Android native development, with strong abilities in RESTful API integration, security, and testing.</p>
</div>
<div id="skills-container"></div>
</section>
<footer>
<div class="footer-container">
<div class="footer-content">
<div class="quick-links">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="certifications.html">Certifications</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="portfolio-links">
<h4>Portfolio</h4>
<ul>
<li><a href="#">Frontend Development</a></li>
<li><a href="#">Backend Development</a></li>
<li><a href="#">Website Design</a></li>
<li><a href="#">Android Development</a></li>
<li><a href="#">Problem Solving & DSA</a></li>
</ul>
</div>
<div class="connect">
<h4>Connect</h4>
<ul>
<a href="https://github.com/devDEV03"><li><i class="ri-github-fill"></i></li></a>
<a href="https://www.linkedin.com/in/dev-singhal-602026230/"><li><i class="ri-linkedin-fill"></i></li></a>
<a href="https://x.com/DevBoiz26"><li><i class="ri-twitter-x-fill"></i></li></a>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Copyright, All Right Reserved</p>
</div>
</div>
</footer>
<script src="JavaScript/skills.js"></script>
<script type="text/javascript">
const bar = document.getElementById('bar');
const nav = document.getElementById('navbar');
const close = document.getElementById('close');
if(bar){
bar.addEventListener('click',
() =>
{
nav.classList.add('active');
}
)
}
if(close){
close.addEventListener('click',
() =>
{
nav.classList.remove('active');
}
)
}
</script>
</body>
</html>