I'm a complete beginner in coding and software development, and I'm diving into a certification program. Right now, I'm trying to navigate Visual Studio Code for an assignment, but I'm stuck. The instructions tell me to add text to the section, and I'm not sure how to do that. Also, I need to include
and
elements in the body. Is everything supposed to be on the same line, or should they be organized differently? When I click 'go live', my screen turns blue instead of showing 'hello world'. I'm really eager to learn how to create apps, but this is a bit overwhelming. Can anyone break this down for me with a simple example? Any tips would be appreciated!
2 Answers
Your code might look something like this:
Hello World
Or, if you want it formatted differently:
Hello World
Both versions are valid, but the structure changes based on what you want. It can be confusing at first, I get it!
I suggest starting with some beginner videos on HTML since that's what you're working with. A channel like "Coding with Mosh" on YouTube is a great resource—he really helped me during my own learning journey!
Thanks, I’ll definitely check that out!

I'm used to that format, but the tricky part for me is that the assignment mentions three separate files: an index.html for the body and
and
, a script.js that just says hello world, and a style.css for colors and backgrounds. How do those fit together?