Home > Enterprise >  html changes won't show up in browser
html changes won't show up in browser

Time:10-20

I'm working on an assignment for a class where our teacher has given us a webpage built out with html and css. We are eventually supposed to create some animations with gsap, but first need to make our own edits to the webpage itself. I am using vscode and when I edit any of the html, the changes show up in my index.html, but not in the browser. Any idea why this is?

CodePudding user response:

Try to use live server on VS Code and then whenever you save it will show up on the page.

-> https://techstacker.com/local-live-server-vscode/

CodePudding user response:

try to right click your browser and check in the sources to make sure it really saved your changes.

CodePudding user response:

Make sure you save the file and reload the page in the browser

  • Related