Skip to content

Commit

Permalink
Fix img src for index templage images
Browse files Browse the repository at this point in the history
  • Loading branch information
sainish committed Jan 11, 2023
1 parent 44aa8a6 commit aaa8eea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ <h2>Food for thoughtful web development!</h2>
<main>
<div class="flex2col">
<a class="left-margin300" href="recipes/cabbage.html">
<img src="../images-recipes/grilled-cabbage.webp" width="400px" height="275"
<img src="images-recipes/grilled-cabbage.webp" width="400px" height="275"
alt="cabbage slices on platter">
</a>
<a class="left-margin300" href="recipes/cabbage.html">Cabbage Recipe</a></br></br>
</div>
<div class="flex2col">
<a class="left-margin300" href="recipes/grilled-asparagus.html">
<img src="../images-recipes/grilled-asparagus.webp" width="400px" height="275px"
<img src="images-recipes/grilled-asparagus.webp" width="400px" height="275px"
alt="grilled asparagus on platter">
</a>
<a class="left-margin300" href="recipes/grilled-asparagus.html">Grilled Asparagus Recipe</a></br></br>
</div>
<div class="flex2col">
<a class="left-margin300" href="recipes/roasted-peppers.html">
<img src="../images-recipes/roasted-peppers.webp" width="400px" height="275" alt="roasted peppers">
<img src="images-recipes/roasted-peppers.webp" width="400px" height="275" alt="roasted peppers">
</a>
<a class="left-margin300" href="recipes/roasted-peppers.html">Roasted Peppers Recipe</a>
</div>
Expand Down

0 comments on commit aaa8eea

Please sign in to comment.