+ 1
Coding
What do I do to my rubbish coding page to make it good https://sololearn.com/compiler-playground/WLAAte16Y4SD/?ref=app https://sololearn.com/compiler-playground/WLAAte16Y4SD/?ref=app
2 Antworten
+ 1
Where is your javascript? Nothing will happen without it
Also you will need to separate your functions with a semi-colon “;” not a comma “,”
Also your css is not using the same class names as your html elements
I see that you are taking the web development course, which is great. But you shouldn’t try to code things that you don’t know. It would be much better to add a little at a time to your code as you learn the new concepts.
0
Innocent Agoha Zvi touched on lot of your issues.
Also be aware that class attribute values with spaces are treated as multiple classes.
EXAMPLE
<div class ="right hand"></div>
is treated as belonging to 2 classes - "right" and "hand"
If you wanted only one class, use camel case (rightHand) or snake case (right_hand) for the class name.