Skip to content

Commit 80b7354

Browse files
Merge pull request TheOdinProject#498 from ojuliocode/issue453
flex/03-flex-header-2: fixed links not leading to desired URL
2 parents 33b6db7 + d029af9 commit 80b7354

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

flex/03-flex-header-2/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
LOGO
1414
</div>
1515
<ul class="links">
16-
<li><a href="google.com">link-one</a></li>
17-
<li><a href="google.com">link-two</a></li>
18-
<li><a href="google.com">link-three</a></li>
16+
<li><a href="https://google.com">link-one</a></li>
17+
<li><a href="https://google.com">link-two</a></li>
18+
<li><a href="https://google.com">link-three</a></li>
1919
</ul>
2020
<button class="notifications">
2121
1 new notification

flex/03-flex-header-2/solution/solution.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
LOGO
1515
</div>
1616
<ul class="links">
17-
<li><a href="google.com">link-one</a></li>
18-
<li><a href="google.com">link-two</a></li>
19-
<li><a href="google.com">link-three</a></li>
17+
<li><a href="https://google.com">link-one</a></li>
18+
<li><a href="https://google.com">link-two</a></li>
19+
<li><a href="https://google.com">link-three</a></li>
2020
</ul>
2121
</div>
2222
<div class="right">

0 commit comments

Comments
 (0)