NodeJs based Basic Informational Site
This site is a basic demonstration of Node.JS Skills that I have acquired so far. This site will consist of these four pages
- index.html
- about.html
- contact-me.html
- 404.html
Node.js server file index.js will contain the code needed to serve the right page according to the url.
- localhost:8080 should take users to index.html
- localhost:8080/about should take users to about.html
- localhost:8080/contact-me should take users to contact-me.html
- 404.html should display any time the user tries to go to a page not listed
above.