Hey guys, could you give me some feedback on my 2 webpages?
Thanks in advance for the feedback!
Regards
A front-end rookie
Links to the pages:
Hey guys, could you give me some feedback on my 2 webpages?
Thanks in advance for the feedback!
Regards
A front-end rookie
Links to the pages:
Tribute Page: Add more space. Add more padding around each section. It will give more air to you page. Other than that itās very neat. I like it.
Survey Template: Changing the color of fonts and box shadow in the nav part is a cool feature. But in the survey part the fonts are not visible enough, try to make them bolder a bit. You could make bigger spaces between each form. And each form should be the same width and height.
For me it would be better if all questions were align to left. It would look more neat.
Thx for the feedback! Iām glad you liked the tribute page, the survey template was lower in quality cause I didnāt know how to make the text and stuff stand out from the background . But thx for the suggestions to improve it too!
Welcome to the forums @Ma3_str0. Pages looks good. Some things to revisit;
tribute page
h1
element correctly.u
element was deprecated a while ago. Your page is supposed to be HTML 5 so get rid of that opening and closing tag. Use CSS to style it.survey form
<br>
tag to force spacing. Use CSS. And as an aside, there is no such tag as </br>
fieldset
element around your radio buttons and checkboxes. Dig a little further into that and see what the legend
element can do for you.As an aside, when using codepen it only expects the code youād put within the <body> </body>
element 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.
id
to the body
tag, make it a div
Thx for all the tips,dude! But could ya maybe tell me how to use spacing with CSS? Do I have to use the margins or padding? But anyway, thx for the help!
@Ma3_str0, I revamped your pen slightly to show you what could be done. I didnāt redo everything because I wanted to show you how you could style. Iāll leave it up to you to finish.
Notice that users can click on the label or the radio button to make their choice. Maybe review the lessons on adding radio buttons and checkboxes.
Notice that I lined things up the same way you did but without the use of the <br>
tag.
There are a lot of accessibility concerns with using that tag.
In reading your script for the tribute page, I noticed (unless I have completely misread the project requirements) that you have not included some of the required div sections, such as the one with an id=āmainā . That being said you do have the project down. Nice work.
Thx for replying. I forgot to readd the finer stuff according to the project. Cause I was following Romaās tips. But anyway, thx for the feedback.
Hey Roma, thx for making the effort of making a demo. I understand some of the stuff better now especially the whole div thing. Iām using <br>
as a force of habit cause we always have to use it at school (Iām in senior year in high school in South Africa, we do really basic HTML but not HTML 5 and not even CSS) so itās kind of all I knew. But thx for everything Roma, I appreciate it.