Skip to content

Commit

Permalink
Merge pull request #10 from ReshetS/vegetables-img-css
Browse files Browse the repository at this point in the history
fix img
  • Loading branch information
ReshetS authored Apr 11, 2024
2 parents 0b31b9a + f38f93a commit a2fd6d3
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions src/partials/vegetables.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ <h3 class="vg-subtitle">eggplant</h3>
<p class="price-list">60 UAH / kg</p>
<img
srcset="
../img/blueguy-1x-min.png 1x,
../img/blueguy-2x-min.png 2x,
../img/blueguy-3x-min.png 3x
./img/blueguy-1x-min.png 1x,
./img/blueguy-2x-min.png 2x,
./img/blueguy-3x-min.png 3x
"
src="../img/blueguy-1x-min.png"
src="./img/blueguy-1x-min.png"
alt="eggplant"
width="282"
height="243"
Expand All @@ -28,11 +28,11 @@ <h3 class="vg-subtitle">leek</h3>
<p class="price-list">50 UAH / kg</p>
<img
srcset="
../img/porei-1x-min.png 1x,
../img/porei-2x-min.png 2x,
../img/porei-3x-min.png 3x
./img/porei-1x-min.png 1x,
./img/porei-2x-min.png 2x,
./img/porei-3x-min.png 3x
"
src="../img/porei-1x-min.png"
src="./img/porei-1x-min.png"
alt="leek"
width="282"
height="243"
Expand All @@ -44,11 +44,11 @@ <h3 class="vg-subtitle">mushrooms</h3>
<p class="price-list">40 UAH / kg</p>
<img
srcset="
../img/mashroom-1x-min.png 1x,
../img/mashroom-2x-min.png 2x,
../img/mashroom-3x-min.png 3x
./img/mashroom-1x-min.png 1x,
./img/mashroom-2x-min.png 2x,
./img/mashroom-3x-min.png 3x
"
src="../img/mashroom-1x-min.png"
src="./img/mashroom-1x-min.png"
alt="mushrooms"
width="282"
height="243"
Expand All @@ -60,11 +60,11 @@ <h3 class="vg-subtitle">corn</h3>
<p class="price-list">60 UAH / kg</p>
<img
srcset="
../img/corn-1x-min.png 1x,
../img/corn-2x-min.png 2x,
../img/corn-3x-min.png 3x
./img/corn-1x-min.png 1x,
./img/corn-2x-min.png 2x,
./img/corn-3x-min.png 3x
"
src="../img/corn-1x-min.png"
src="./img/corn-1x-min.png"
alt="corn"
width="282"
height="243"
Expand All @@ -76,11 +76,11 @@ <h3 class="vg-subtitle">sweet potatoes</h3>
<p class="price-list">50 UAH / kg</p>
<img
srcset="
../img/batat-1x-min.png 1x,
../img/batat-2x-min.png 2x,
../img/batat-3x-min.png 3x
./img/batat-1x-min.png 1x,
./img/batat-2x-min.png 2x,
./img/batat-3x-min.png 3x
"
src="../img/batat-1x-min.png"
src="./img/batat-1x-min.png"
alt="sweetpotatoes"
width="282"
height="243"
Expand All @@ -92,11 +92,11 @@ <h3 class="vg-subtitle">carrot</h3>
<p class="price-list">40 UAH / kg</p>
<img
srcset="
../img/carrot-1x-min.png 1x,
../img/carrot-2x-min.png 2x,
../img/carrot-3x-min.png 3x
./img/carrot-1x-min.png 1x,
./img/carrot-2x-min.png 2x,
./img/carrot-3x-min.png 3x
"
src="../img/carrot-1x-min.png"
src="./img/carrot-1x-min.png"
alt="carrot"
width="282"
height="243"
Expand Down

0 comments on commit a2fd6d3

Please sign in to comment.