31st Jan 2025, 4:06 PM
Innocent Agoha
Innocent Agoha - avatar
2 Respostas
+ 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.
31st Jan 2025, 6:36 PM
Zvi
Zvi - avatar
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.
1st Feb 2025, 5:42 AM
Shardis Wolfe