Hello!
Created his first work Tribute Page https://codepen.io/wolfnt/pen/RwRzEpM
I would like to know your opinion - what is wrong, what to change, what to improve.
Thanks in advance!
Hello!
Created his first work Tribute Page https://codepen.io/wolfnt/pen/RwRzEpM
I would like to know your opinion - what is wrong, what to change, what to improve.
Thanks in advance!
you can add the links in the head tags in âStuff for the headâ in the pen settings
The background is weird, scrolling a bit faster than normal makes me nauseus⌠also, Iâm not sure black on brown is accessible, some parts are hard to read
But, nice layout, responsive (Iâm looking the page on mobile), and passes all tests - good job!
Welcome to the forums @wolfnt. Your page looks good. Some things to revisit;
As mentioned, codepen provides the boilerplate for you. It only expects the code youâd put within the body element in HTML. (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.
link to the font (head element in HTML) or import it (CSS) but you donât have to do both<link> tag. As a rule of thumb, you want to avoid @import rules because they defer the loading of the included resource until the file is fetched.Run your HTML code through the W3C validator.
Codepen provides validators for HTML, CSS and JS. Click on the down arrow in the upper right of each section and then click on the respective âAnalyzeâ link.
In addition to being used incorrectly on your page, do not use the <br> element to force line breaks or spacing. Thatâs what CSS is for.
Accessibility is about being accessible to all users. Review the lesson about giving meaningful text to links.
There are two instances of your page in the HTML section
Roma Thank you for pointing out the errors, I will correct them as soon as possible.
I will definitely study the thoroughly recommended material. Thanks again!
All recommendations and corrections have been implemented. The code is fully verified in the W3 validator - no errors, except for the absence of! DOCTYPE were found. ĐĄSS is also checked and there are no errors.
I am thinking about changing the background and changing the font color accordingly.
@wolfnt, I see some things implemented but not all. For instance,
link and @import the font. Choose one or the other.You can change your background and fonts if youâd like. If you do it in the same pen you donât have to resubmit. Just ensure that all tests still pass and your page is still responsive after making any changes.
@Roma Removed the font from CSS;
I updated the link, checked it - everything opens in a new window;
But I never found a spelling error in CSS. W3 found no errors.
Hi @wolfnt,
Clicking the down arrow in the upper right of the CSS section and selecting Analyze CSS will show you this on line 25;
@media (max-widht: 460px) {
Please read the provided links about accessibility. Briefly, taken out of context, âwikipedia entryâ doesnât make sense.
@Roma Thank you, I saw the error - I fixed it. As for the link - then is it possible to give a link to another resource?
Please, read the links provided about accessibility. The link should make sense when taken out of context. For someone using a screen reader, âwikipedia entryâ will not make sense.
@Roma Got it. I will definitely read and correct.
And another question. Is it possible to use your own images and fonts in CodePen, how to design links in this case, because a separate folder with files is not provided, as in offline code.
If the use of external sources of fonts and images is mandatory - the question is removed 
In the free version of codepen, no.
For images, you can search and find a free image hosting website and then use that link as the source for your images.
For fonts, thereâs a big selection at Google fonts that you can either link to (head element in HTML) or import (CSS).
Got it. Thanks. I thought so.
