////////////////////// Project Structure //////////////////////
└── TBCxUSAID---React/ ├── assets/ │ ├── image/ │ │ └── ... │ └── style/ │ └── ... │ ├── js/ │ └── index.html
////////////////////// Technologies used //////////////////////
HTML(for structuring) CSS(for styling) JavaScript(for DOM manipulation)
////////////////////// Project run instruction //////////////////////
-
Install Node.js: Ensure that Node.js is installed on your system.
-
Navigate to Your Project Folder: Open a terminal or command prompt, and navigate to the folder where your HTML file is located.
-
Install http-server: Run the following command to install the http-server package globally: npm install -g http-server
-
Start the HTTP Server: Run the following command: http-server This command starts a simple HTTP server, and it will serve your files at http://localhost:8080 by default.
-
Access Your Project: Open your web browser and navigate to http://localhost:8080 (or the specified port) to view your project.