I would like to get feedbacks!
They are my new projects.
It is in this collection.
Every feedback will be helpful for me.
Thanks You
1 Like
Hi Andrew,
I was visited your personal portfolio project. That’s cool and beautiful design I like it.
1 Like
Your pages look good @AndrewAung11. Some things to revisit;
tribute
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)- The test script should be included, with all tests passing, when you submit your projects.
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- Since copy/paste from codepen you can ignore the first warning and first two errors.
- Don’t copy from the example projects
- there are
font-family
fonts in your CSS that you neitherlink
to norimport
- there are
- 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.
-
Web Accessibility in Mind has a more thorough explanation.
- “wikipedia” is not accessible
-
Web Accessibility in Mind has a more thorough explanation.
- I don’t often comment on styling because it’s what the author chose but rethink the width of the timeline on smaller screens. One word per bullet point is not a good UX. (Screenshot at bottom)
survey form
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)- The test script should be included, with all tests passing, when you submit your projects.
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- Since copy/paste from codepen you can ignore the first warning and first two errors.
- Do not use the
<br>
element to force line breaks or spacing. That’s what CSS is for. - The correct spelling is “submit”
prod land
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)- The test script should be included, with all tests passing, when you submit your projects.
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- You can ignore the warnings if you want
- Since copy/paste from codepen you can ignore the first warning and first two errors.
- There are HTML coding errors you should be aware of and address.
- Do not use the
<br>
element to force line breaks or spacing. That’s what CSS is for. - Make your page responsive. Remember, the R in RWD stands for Responsive
- There’s a horizontal scrollbar on smaller screens
tech doc
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)- The test script should be included, with all tests passing, when you submit your projects.
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- Since copy/paste from codepen you can ignore the first warning and first two errors.
- Do not use the
<br>
element to force line breaks or spacing. That’s what CSS is for. - Nest multi-line
<code>
snippets in<pre> </pre>
tags in HTML to preserve whitespace and line breaks.
Or skip thepre
element and do the following in CSS;
code {
white-space: pre-line;
}
portfolio
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)- The test script should be included, with all tests passing, when you submit your projects.
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- Since copy/paste from codepen you can ignore the first warning and first two errors.
- Make your page responsive. Remember, the R in RWD stands for Responsive
- There’s a horizontal scrollbar on smaller screens
- Maybe actually include links to your FCC projects
Side note;
- Don’t be afraid to be descriptive with class names. It’ll be more semantic for yourself, and others who read your code. For example, if you have several two letter, or cryptic,
id
's (orclass
names) that make sense to you now, they may not a year later and probably will never mean anything to other people.
1 Like