-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.html
More file actions
115 lines (97 loc) · 2.68 KB
/
Copy pathskills.html
File metadata and controls
115 lines (97 loc) · 2.68 KB
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
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Skills | Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="navbar">
<div class="logo">Sneha</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="skills.html" class="active">Skills</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<!-- PAGE HERO -->
<section class="page-hero">
<h1>My Skills</h1>
<p>Technologies, tools and what I am learning step by step</p>
</section>
<!-- SKILLS INTRO -->
<section class="section">
<h2 class="section-title">What I Do</h2>
<p class="section-text">
I focus on building clean, responsive and modern websites.
My goal is to write simple but professional HTML & CSS code
that works well on all devices.
</p>
</section>
<!-- CORE SKILLS -->
<section class="section dark">
<h2 class="section-title">Core Skills</h2>
<div class="skill-bars">
<div class="skill-bar">
<span>HTML</span>
<div class="bar">
<div class="fill html"></div>
</div>
</div>
<div class="skill-bar">
<span>CSS</span>
<div class="bar">
<div class="fill css"></div>
</div>
</div>
<div class="skill-bar">
<span>Responsive Design</span>
<div class="bar">
<div class="fill responsive"></div>
</div>
</div>
</div>
</section>
<!-- TOOLS -->
<section class="section">
<h2 class="section-title">Tools I Use</h2>
<div class="cards">
<div class="card">VS Code</div>
<div class="card">Git & GitHub</div>
<div class="card">Chrome DevTools</div>
<div class="card">Figma (Basics)</div>
</div>
</section>
<!-- LEARNING -->
<section class="section dark">
<h2 class="section-title">Currently Learning</h2>
<div class="timeline">
<div class="timeline-item">
<h3>Advanced CSS</h3>
<span>2025</span>
<p>Animations, transitions and better layouts.</p>
</div>
<div class="timeline-item">
<h3>JavaScript Basics</h3>
<span>Next Step</span>
<p>To add interactivity to websites.</p>
</div>
</div>
</section>
<!-- CTA -->
<section class="section">
<h2 class="section-title">Want to See My Work?</h2>
<p class="section-text">
Check out my projects to see how I use these skills in real websites.
</p>
<div style="text-align:center; margin-top:30px;">
<a href="projects.html" class="btn primary">View Projects</a>
</div>
</section>
<footer class="footer">
<p class="footer-copy">© 2026 Sneha</p>
</footer>
</body>
</html>