@Grid007Submitted over 1 year ago
first project so give any feedback what all i need to work on and improve
first project so give any feedback what all i need to work on and improve
Give a border-radius at the left and right bottoms of the image.
Your code is overflowing the container because of the height property. Remove it or use auto to stop overflowing the text.
You can read the style guide to get information about the background color, font family, font size, etc. It will help you to make the project looks as close as the sample.
There are many ways to put the container in the center. Using flexbox property is one among them.
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
It will keep your container in the center as well as the elements inside it.