Hi everyone! I’m new to web developing and this is my first project, so I will be glad to hear any feedback. Thank you!
https://codepen.io/alieninochi/pen/ExjOKdq - David Lynch’s Tribute Page
Hi everyone! I’m new to web developing and this is my first project, so I will be glad to hear any feedback. Thank you!
https://codepen.io/alieninochi/pen/ExjOKdq - David Lynch’s Tribute Page
I would change your font color, it is very difficult to read with the white background.
Here is a useful tool to check your color contrasts!
Also verify your email address with code pen so we can see it in full page view
Welcome to the forums @alieninochi. Your page looks good. Some minor things;
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
).
<body> </body>
tags in HTML. (No need to include the body tags). For anything you want to add to <head>
click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
html
element but there’s no opening one. But since codepen provides the boilerplate for you it’s best to only put in what would go between the body
tags.When I saw you gave each of the years a class
of year I thought it was because you were going to make them bold and then get rid of the bullet points.
@slamoureux, @Roma thanks for your comments! I’ve fixed everything
Hi @alieninochi, I see you did try and make the font-weight
bold. You may have noticed that even though you’re it a value of bold
the text on your page doesn’t render as such. This is because when you imported your font you only selected regular. Go back to Google Fonts and when you select your font it will give you the link. All well and good so far but what you then need to do is click on the ‘customize’ link (next to ‘embed’) and there click the bold checkbox also. Click the ‘embed’ link and put the new link in your page. (Notice it now has weights for 400 & 700).
Btw, I did this too with a page I was working on and asked a question about why I wasn’t seeing the font output the way I expected here in the forums and it was explained to me. Here’s the link to my post which includes a quick video the responder made showing how to do what I just explained.
A few minor things for you if you are interested.
margin: 0 auto
as well). You are centering the h1 and h2 which is enough. As it currently is, if you narrow the browser window all the way and then increase the text size, the header text does not stay centered but rather starts widening to the right, because it is trying to respect the 50% width you put on it along with side margins set to auto. Granted, this is not going to be a common occurrence, but if the goal is responsiveness then getting rid of the width will help. Besides, your header content isn’t really wide enough to need restrictions on its width in the first place.Overall, very nice job.