Hi everybody,
I’d like to have some external feedback because I don’t like the design of my page very much. But I am not able to tell what bothers me. (I guess background images are … well I’ll try to find another ones).
And I have an issue with html image that is not showing on the page. But the test is OK.
Here’s my codepen:
https://codepen.io/JanaHamadi/pen/XWmrEMd
Thanks!
Hi @jana.f.hamadi,
The issue of html not showing up because one of the attribute in img tag should be src instead of url.
Replace <img id="image" url="https://upload.wikimedia.org/wikipedia/commons/c/c3/Sir_William_Herschel_and_Caroline_Herschel._Wellcome_V0002731_%28cropped%29.jpg" alt="Caroline Herschel with her brother" />
with
<img id="image" src="https://upload.wikimedia.org/wikipedia/commons/c/c3/Sir_William_Herschel_and_Caroline_Herschel._Wellcome_V0002731_%28cropped%29.jpg" alt="Caroline Herschel with her brother" />
1 Like