Hello guys Here is my final project and any feedback regarding this project is highly welcomed.
Thanks.
https://codepen.io/19alema/full/bGePpLg
1 Like
Your portfolio looks good @19alema. Some things to revisit;
- Make all your styling external. Do not use in-line styles.
- Make your page responsive. Remember, the R in RWD stands for Responsive
- There’s a horizontal scrollbar on smaller screens
To help with responsiveness;
- Get familiar with the box methodology. Once you realize everything you see on a webpage is just a box you need to move around and resize, things will start to click.
- Add this like to your CSS;
* {
border: solid 1px red;
}
(You already have the universal selector, just add the line that’s inside this one to yours. Don’t add another universal selector)
Hey @19alema!
I think your page looks great! Congrats on finishing up your first certification.
You might considering adding a smoother scroll effect which creates a smooth scroll for the whole page.
html {
scroll-behavior: smooth;
}
Happy coding!
1 Like
try to put any resources (stylesheets, javascript) inside the head tag.
one of your link tags to load a stylesheet is showing up in the body.