Skip to content

done #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 19, 2023
Merged

done #59

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 34 additions & 60 deletions intro-section-with-dropdown-navigation-main/dist/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 15 additions & 13 deletions intro-section-with-dropdown-navigation-main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
<title>Frontend Mentor | Intro section with dropdown navigation</title>
</head>

<body>
<body>
<header>
<div class="logo">
<div class="logo">
<img src="./images/logo.svg" alt="logo">
</div>
<nav>
<div class="overlay"></div>
<div class="overlay"></div>
<div>
<img src="./images/icon-close-menu.svg" alt="close menu icon" class="menu-close-icon menu-icon">
<img src="./images/icon-close-menu.svg" alt="close menu icon" class="menu-close-icon menu-icon">

<ul>
<li class="dropdown-container"><a href="#">Features</a><span><img src="./images/icon-arrow-down.svg"
alt="icon-arrow-up" class="rotate"></span>
alt="icon-arrow-up" class="changeImg"></span>
<ul class="drop leftShift">
<li><img src="./images/icon-todo.svg" alt="Todo icon"> Todo list </li>
<li><img src="./images/icon-calendar.svg" alt="calender icon"> Calender </li>
Expand All @@ -34,7 +34,7 @@
</ul>
</li>
<li class="dropdown-container"><a href="#">Company</a><span><img src="./images/icon-arrow-down.svg"
alt="dropdown icon" class="rotate"></span>
alt="dropdown icon" class="changeImg"></span>
<ul class="drop">
<li>History</li>
<li>Our Team</li>
Expand All @@ -58,15 +58,17 @@

</header>
<main>
<picture>
<source media="(min-width: 768px)" srcset="./images/image-hero-desktop.png">
<img src="./images/image-hero-mobile.png" alt="illustration-intro-mobile">
</picture>
<div class="picture-wrapper">
<picture>
<source media="(min-width: 768px)" srcset="./images/image-hero-desktop.png">
<img src="./images/image-hero-mobile.png" alt="illustration-intro-mobile">
</picture>
</div>
<div class="main-section-texts">
<h1>Make remote work</h1>
<p>Get your team in sync, no matter your location. Streamline processes,
create team rituals, and watch productivity soar.</p>
<div><button>Learn more</button></div>
<button>Learn more</button>

<div class="social-links">
<img src="./images/client-databiz.svg" alt="data biz icon">
Expand All @@ -85,7 +87,7 @@ <h1>Make remote work</h1>
</div>
</footer>

<script src="./script.js"></script>
<script src="./script.js"></script>
</body>

</html>
</html>
Loading