{"id":19904469,"url":"https://github.com/triple-ade/intro-section-with-dropdown-navigation","last_synced_at":"2026-05-14T09:33:09.321Z","repository":{"id":104360939,"uuid":"599952856","full_name":"TRIPLE-ADE/Intro-section-with-dropdown-navigation","owner":"TRIPLE-ADE","description":"Frontend challenge on Intro section with dropdown navigation","archived":false,"fork":false,"pushed_at":"2023-02-10T10:49:28.000Z","size":1453,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T07:29:03.379Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://intro-section-landing-page.netlify.app/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TRIPLE-ADE.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-10T08:46:55.000Z","updated_at":"2023-04-28T05:20:26.000Z","dependencies_parsed_at":"2023-04-11T11:31:31.991Z","dependency_job_id":null,"html_url":"https://github.com/TRIPLE-ADE/Intro-section-with-dropdown-navigation","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TRIPLE-ADE/Intro-section-with-dropdown-navigation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2FIntro-section-with-dropdown-navigation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2FIntro-section-with-dropdown-navigation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2FIntro-section-with-dropdown-navigation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2FIntro-section-with-dropdown-navigation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TRIPLE-ADE","download_url":"https://codeload.github.com/TRIPLE-ADE/Intro-section-with-dropdown-navigation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2FIntro-section-with-dropdown-navigation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-25T02:00:05.816Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T20:28:37.711Z","updated_at":"2025-11-25T09:01:29.365Z","avatar_url":"https://github.com/TRIPLE-ADE.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Intro section with dropdown navigation solution\n\nThis is a solution to the [Intro section with dropdown navigation challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/intro-section-with-dropdown-navigation-ryaPetHE5). Frontend Mentor challenges help you improve your coding skills by building realistic projects. \n\n## Table of contents\n\n- [Overview](#overview)\n  - [The challenge](#the-challenge)\n  - [Screenshot](#screenshot)\n  - [Links](#links)\n- [My process](#my-process)\n  - [Built with](#built-with)\n  - [What I learned](#what-i-learned)\n  - [Continued development](#continued-development)\n- [Author](#author)\n\n\n## Overview\nAn Intro section with a dropdown menu navigation on hover and responsive across all screen sizes\n### The challenge\n\nUsers should be able to:\n\n- View the relevant dropdown menus on desktop and mobile when interacting with the navigation links\n- View the optimal layout for the content depending on their device's screen size\n- See hover states for all interactive elements on the page\n\n### Screenshot\n\n![](./design/desktop.png)\n![](./design/mobile.png)\n![](./design/mobile-open-nav.png)\n\n\n### Links\n\n- Solution URL: [Add solution URL here](https://github.com/TRIPLE-ADE/Intro-section-with-dropdown-navigation)\n- Live Site URL: [Add live site URL here](https://intro-section-landing-page.netlify.app/)\n\n## My process\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- Flexbox\n- CSS Grid\n\n\n### What I learned\n\nUse this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.\n\nTo see how you can add code snippets, see below:\n\n```html\n\u003ch1\u003eSome HTML code I'm proud of\u003c/h1\u003e\n```\n```css\n*{\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n}\n:root{\n    --Almost-White: hsl(0, 0%, 98%);\n    --Medium-Gray: hsl(0, 0%, 41%);\n    --Almost-Black: hsl(0, 0%, 8%);\n}\nbody{\n    background-color: var(--Almost-White);\n    width: 95%;\n    margin: auto;\n    font-family: 'Epilogue', sans-serif;\n}\n.hide, .cancel{\n    display: none ;\n}\n.show-subnav:hover  .hide{\n    display: block;\n}\n.register .show-subnav \u003e a {\n    color: var(--Medium-Gray);\n}\n.show-subnav \u003e a{\n    display: flex;\n}\n.show-subnav \u003e a::after{\n    content: url(\"./images/icon-arrow-down.svg\");\n    padding-left: 10px;\n}\n.show-subnav:hover \u003e a::after{\n    content: url(\"./images/icon-arrow-up.svg\");\n}\n\nmain{\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 100px;\n    min-height: 100vh;\n    width: 85%;\n    margin: auto;\n}\n```\n```js\nconst hamburgerEl = document.querySelector('.hamburger');\nconst navbarEl = document.querySelector('.navbar');\nconst closeMenuEl = document.querySelector('.close');\n\n\nhamburgerEl.addEventListener('click', function(e) {\nnavbarEl.childNodes[3].classList.toggle(\"hide-nav\");\nhamburgerEl.classList.add(\"hide-nav\")\ncloseMenuEl.classList.remove(\"cancel\");\n})\n\ncloseMenuEl.addEventListener(\"click\", function(){\n    navbarEl.childNodes[3].classList.toggle(\"hide-nav\");\n    hamburgerEl.classList.remove(\"hide-nav\")\n    closeMenuEl.classList.add(\"cancel\");\n})\n```\n\nIf you want more help with writing markdown, we'd recommend checking out [The Markdown Guide](https://www.markdownguide.org/) to learn more.\n\n\n### Continued development\n\nUse this section to outline areas that you want to continue focusing on in future projects. These could be concepts you're still not completely comfortable with or techniques you found useful that you want to refine and perfect.\n\n- Css grid \n- mobile work flow\n- Dom manipulation\n- javascript array and object manipulation\n\n## Author\n\n- Website - [Triple](https://intro-section-landing-page.netlify.app/)\n- Frontend Mentor - [@yourusername](https://www.frontendmentor.io/profile/yourusername)\n- Twitter - [@Triple123A](https://twitter.com/Triple123A)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftriple-ade%2Fintro-section-with-dropdown-navigation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftriple-ade%2Fintro-section-with-dropdown-navigation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftriple-ade%2Fintro-section-with-dropdown-navigation/lists"}