Tool Directory for All Users body { font-family: Arial, sans-serif; background: #f0f6ff; padding: 20px; } h1 { text-align: center; color: #003366; } .tabs { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; gap: 10px; } .tab-button { padding: 10px 20px; border: none; background: #e0e7ff; cursor: pointer; font-weight: bold; color: #003366; border-radius: 6px; transition: 0.3s; } .tab-button.active { background: #003366; color: white; } .search-box { text-align: center; margin-bottom: 30px; } .search-box input { padding: 10px; width: 300px; font-size: 16px; border-radius: 8px; border: 1px solid #ccc; } .tab-content { display: none; animation: fadeIn 0.5s ease-in-out; } .tab-content.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; } .tool-box { background: #eaf0ff; padding: 15px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; transition: 0.3s; cursor: pointer; } .tool-box:hover { background-color: #dbe4ff; } .icon { font-size: 30px; margin-bottom: 10px; } .tool-name { font-weight: bold; color: #003366; margin-bottom: 6px; } .description { font-size: 13px; color: #333; margin-bottom: 10px; } .visit-btn { background-color: #004080; color: white; border: none; padding: 6px 12px; border-radius: 5px; cursor: pointer; font-size: 14px; } .visit-btn:hover { background-color: #002d5e; } @keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }

๐Ÿ“ Top 100 Useful Tools for Students, Professionals, Businesses & Startups

const tools = [ // Student Tools {name:"Canva Resume", url:"https://www.canva.com/resumes/", description:"Create modern resumes in minutes.", icon:"๐Ÿ“„", category:"student"}, {name:"Khan Academy", url:"https://www.khanacademy.org/", description:"Free educational courses for students.", icon:"๐ŸŽ“", category:"student"}, {name:"Grammarly", url:"https://www.grammarly.com/", description:"Grammar and spell checker.", icon:"โœ๏ธ", category:"student"}, {name:"Notion", url:"https://www.notion.so/", description:"Organize notes and tasks.", icon:"๐Ÿ—‚๏ธ", category:"student"}, {name:"Coursera", url:"https://www.coursera.org/", description:"Online learning platform.", icon:"๐ŸŽฅ", category:"student"}, {name:"Skill Yuth", url:"https://www.coursera.org/", description:"Online learning platform.", icon:"๐ŸŽฅ", category:"student"}, // Professional Tools {name:"LinkedIn", url:"https://www.linkedin.com/", description:"Professional networking site.", icon:"๐ŸŒ", category:"professional"}, {name:"Indeed", url:"https://www.indeed.com/", description:"Job search platform.", icon:"๐Ÿ”", category:"professional"}, {name:"Zoom", url:"https://zoom.us/", description:"Video conferencing tool.", icon:"๐ŸŽฅ", category:"professional"}, {name:"Trello", url:"https://trello.com/", description:"Team project management.", icon:"๐Ÿ“‹", category:"professional"}, {name:"Slack", url:"https://slack.com/", description:"Team communication tool.", icon:"๐Ÿ’ฌ", category:"professional"}, // Business Tools {name:"Google Workspace", url:"https://workspace.google.com/", description:"Business email & collaboration tools.", icon:"๐Ÿ“ง", category:"business"}, {name:"QuickBooks", url:"https://quickbooks.intuit.com/", description:"Accounting software.", icon:"๐Ÿ“Š", category:"business"}, {name:"Mailchimp", url:"https://mailchimp.com/", description:"Email marketing platform.", icon:"๐Ÿ“จ", category:"business"}, {name:"Canva Business", url:"https://www.canva.com/", description:"Create business designs.", icon:"๐ŸŽจ", category:"business"}, {name:"Shopify", url:"https://www.shopify.com/", description:"Create eCommerce websites.", icon:"๐Ÿ›’", category:"business"}, // Startup Tools {name:"Startup India", url:"https://www.startupindia.gov.in/", description:"Government support platform.", icon:"๐Ÿ‡ฎ๐Ÿ‡ณ", category:"startup"}, {name:"AngelList", url:"https://angel.co/", description:"Find startup jobs & investors.", icon:"๐Ÿ‘ผ", category:"startup"}, {name:"Product Hunt", url:"https://www.producthunt.com/", description:"Discover new tech startups.", icon:"๐Ÿš€", category:"startup"}, {name:"Crunchbase", url:"https://www.crunchbase.com/", description:"Startup insights & data.", icon:"๐Ÿ“Š", category:"startup"}, {name:"Y Combinator", url:"https://www.ycombinator.com/", description:"Top startup accelerator.", icon:"๐Ÿ”ฅ", category:"startup"} ]; function createToolBox(tool) { return `
${tool.icon}
${tool.name}
${tool.description}
`; } function populateTabs() { const allTab = document.getElementById('all'); const studentTab = document.getElementById('student'); const professionalTab = document.getElementById('professional'); const businessTab = document.getElementById('business'); const startupTab = document.getElementById('startup'); tools.forEach(tool => { const box = createToolBox(tool); allTab.innerHTML += box; if (tool.category === 'student') studentTab.innerHTML += box; if (tool.category === 'professional') professionalTab.innerHTML += box; if (tool.category === 'business') businessTab.innerHTML += box; if (tool.category === 'startup') startupTab.innerHTML += box; }); } function showTab(tabId) { const contents = document.querySelectorAll('.tab-content'); const buttons = document.querySelectorAll('.tab-button'); contents.forEach(c => c.classList.remove('active')); buttons.forEach(b => b.classList.remove('active')); document.getElementById(tabId).classList.add('active'); event.target.classList.add('active'); } function goTo(url) { window.open(url, '_blank'); } function searchTools() { const input = document.getElementById("searchInput").value.toLowerCase(); const allTools = document.querySelectorAll(".tab-content.active .tool-box"); allTools.forEach(tool => { const name = tool.querySelector(".tool-name").textContent.toLowerCase(); tool.style.display = name.includes(input) ? "block" : "none"; }); } populateTabs();
Scroll to Top