Hello Everyone!
Here is the link to my tribute page. Let me know what you think
Hello Everyone!
Here is the link to my tribute page. Let me know what you think
Suggestion
Try to use some spacing between words.
Play with some other fonts because heading and paragraph look used the same font and it’s not suited for reading.
Feedback
Looks absolutely beautiful.
Everything is well structured.
hope I helped happy coding✌🏽
Thank you for the suggestions and the feedback :).
Good point on the word spacing and changing up the font - definitely more aesthetically pleasing.
Happy coding to you as well!
Your page looks good @bbs2527. Some things to revisit;
body
element in the HTML editor. (No need to include the body
tags). For anything you want to add to the <head>
element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
Thanks so much! I figured out why there was an error - the below specified to have the element to be responsive but when I changed the id (#image) to max-width 100%, it made it pass. This is what confused me because I misconstrued what the error wanted. Everything should be good to go now
.
Thanks again!
Error Problem:
Layout
Try using the “max-width” style property
/* Main Image */
#image{
max-width: 100%;
background: transparent;
margin: auto;
}
#image img{
height: auto;
display: block;
max-width: 100%;
margin: auto;
}
#img-caption{
text-align: center;
background-color: white;
color: black;
max-width: 100%;
margin: auto;
}
#img-div{
margin: auto;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
max-width: 80%;
}
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.