Skip to content

Commit

Permalink
Merge pull request TheOdinProject#498 from ojuliocode/issue453
Browse files Browse the repository at this point in the history
flex/03-flex-header-2: fixed links not leading to desired URL
  • Loading branch information
thatblindgeye authored Feb 29, 2024
2 parents 33b6db7 + d029af9 commit 80b7354
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions flex/03-flex-header-2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
LOGO
</div>
<ul class="links">
<li><a href="google.com">link-one</a></li>
<li><a href="google.com">link-two</a></li>
<li><a href="google.com">link-three</a></li>
<li><a href="https://google.com">link-one</a></li>
<li><a href="https://google.com">link-two</a></li>
<li><a href="https://google.com">link-three</a></li>
</ul>
<button class="notifications">
1 new notification
Expand Down
6 changes: 3 additions & 3 deletions flex/03-flex-header-2/solution/solution.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
LOGO
</div>
<ul class="links">
<li><a href="google.com">link-one</a></li>
<li><a href="google.com">link-two</a></li>
<li><a href="google.com">link-three</a></li>
<li><a href="https://google.com">link-one</a></li>
<li><a href="https://google.com">link-two</a></li>
<li><a href="https://google.com">link-three</a></li>
</ul>
</div>
<div class="right">
Expand Down

0 comments on commit 80b7354

Please sign in to comment.