My issue right now is more related to Github Pages. The css stylesheet is not being picked up for some reason...
Eddy M
@diazeddymAll comments
- @zenmatchaSubmitted 9 months ago@diazeddymPosted 9 months ago
Hello there, Looks like you had a problem linking your style sheet. Instead of having:
<link rel="stylesheet" type="text/css" href="/style.css" />
in your HTML, try using:<link rel="stylesheet" href="styles.css">
Once you make those changes the page will load up correctly. After that you will need to make this small change to the source image for the profile picture:
./assets/images/avatar-jessica.jpeg
by adding a period before/assets
it makes sure to go inside that folder to search for the picture.Hope that helps. Happy coding
Marked as helpful1 - @douglass154Submitted 9 months ago
Tem alguma melhoria que eu poderia adicionar ao meu código? maneiras de ser mais produtivo e deixar o código mais limpo e eficiente?
@diazeddymPosted 9 months agoGreat job! By adding: .btn:hover { background-color: hsl(75, 94%, 57%); you could acomplish an active button look when hovering. But nicely done!
0