Setting up local host server on your pc

sir please make a video on how to setup your own local host server on our pc and how to view webpages via it…having a lot of problem in that//

You can install “Live Server” extension in VS Code to do it.
Also to do from terminall, install http-server

npm install -g http-server

Then in your folder where you have your files run

hs -p 8888 .

Here dot “.” refers to current folder, you can use different path
And 8888 is the intended port.

For more info, you can follow this link.