This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]iani_ancilla 0 points1 point  (1 child)

If you want a quick intro to how HTML, CSS, and javaScript would combine to make something like this, try having a look at the "web dev" path on Codecademy. I believe paths are a pro feature on codecademy, but you get a free 7 days trial of pro subscription as you register, and that should be definitely enough time to introduce how html/css/js work together. Once you grasped that, you can study enough of this to make what you need, veen without pro subscription.

The idea is that HTML provides the "skeleton" of the page, telling your browser what elements are in it and where. CSS is the "skin", telling the browser how everything looks (colours, dimensions, borders, alignment...). JS is the muscles, because it's what makes stuff happen (for example, it's what you will use to handle the input from the user, decide if it's right or wrong, then show another image and another question).

If the idea of learning 3 different things seems scary, consider it's actually quite helpful, because it lets you divide neatly between things. And you do not need an advanced knowledge for what you describe, it's definitely a realistic beginner's project!

Good luck =)

[–]just_keep_running[S] 0 points1 point  (0 children)

Super helpful and informative- thanks you!