FertwBr / youtube-clone

0 stars 0 forks source link

Make the thumbnail and channel pictures into a link --> #5

Closed FertwBr closed 5 months ago

FertwBr commented 5 months ago
        <!-- TODO Make the thumbnail and channel pictures into a link -->

https://github.com/FertwBr/youtube-clone/blob/0ee8274b98b2729bf19cd7f7de471aaa32878f8f/youtube.html#L101

FertwBr commented 5 months ago

Fixed #5 Issue : Make the thumbnail and channel pictures into a link

Fixed by adding anchor tags around the images

<div class="thumbnail-row">
  <a href="https://www.youtube.com/watch?v=n2RNcPRtAiY" target="_top">
    <img class="thumbnail" src="images/thumbnails/thumbnail-1.webp">
  </a>
  <div class="video-time">14:20</div>
</div>
<div class="video-info-grid">
  <div class="channel-picture">
    <a href="https://www.youtube.com/c/mkbhd" target="_top">
      <img class="profile-picture" src="images/channel-pictures/channel-1.jpeg">
    </a>
  </div>
</div>