I would like to create a portfolio using AWS and HTML, but I can't see the image even if I write the code below.
<img alt="photo"scr="MovieClub.jpg">
Please let me know how to solve it
html aws-cloud9
<img>
tag properties show scr=
, but the correct spelling is src=
.
HTML and images are located in a separate folder, so you can specify the image from portfolio.html.
You should use the relative path to make the following statement:
<img src="../photo/MovieClub.jpg" alt="photo">
The <img>
tag property says scr=
, but the correct spelling is src=
.
HTML and images are placed in separate folders, so to specify the image from portfolio.html
You should use the relative path to make the following statement:
<img src="../photo/MovieClub.jpg" alt="photo">
There are many other parts that you think are misspelled, so please check the correct spelling by looking at the reference books.
This post was posted as a community wiki based on advice from multiple users in the comments section.
© 2024 OneMinuteCode. All rights reserved.