Show what you know, but be honest. A clear, accurate skills section is better than an inflated one that falls apart in interviews.
Languages: HTML, CSS, JavaScript, PHP, Python Frameworks: React, Bootstrap, Tailwind Tools: Git, VS Code, Figma, XAMPP Databases: MySQL, SQLite
.bar-fill {
width: 0%; /* start at 0 */
transition: width 1.2s ease;
}
/* Animate on page load or scroll */
window.addEventListener("load", () => {
document.querySelectorAll(".bar-fill").forEach(el => {
el.style.width = el.dataset.width;
});
});