Skip to content

Commit

Permalink
fix: the src of home-image and tooltip-right.svg
Browse files Browse the repository at this point in the history
The image src was missing a starting dot so the src link was broken and
the image was not shown and now it's been fixed
  • Loading branch information
rasan3-1416 committed Oct 5, 2023
1 parent 0052c71 commit 0ef2bfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@
<section class="home section" id="home">
<div class="home__container container grid">
<div class="home__content">
<img class="home__img" src="/assets/img/home-img.png" alt="image">
<img class="home__img" src="./assets/img/home-img.png" alt="image">
<h1 class="home__title">
<span>J</span>
<span>B</span>
<span>L</span>
</h1>
<div class="home__tooltip">
<img class="home__tooltip-img" src="/assets/img/tooltip-right.svg" alt="">
<img class="home__tooltip-img" src="./assets/img/tooltip-right.svg" alt="">
<span class="home__tooltip-text">$150</span>
</div>
</div>
Expand Down

0 comments on commit 0ef2bfd

Please sign in to comment.