-
Notifications
You must be signed in to change notification settings - Fork 146
Closed
Description
project-root/
│
├── views/ # All HTML files (pages)
│ ├── index.html
│ ├── about.html
│ └── contact.html
│
├── public/ # Static assets
│ ├── css/
│ │ └── style.css
│ │
│ ├── js/
│ │ └── script.js
│ │
│ └── images/
│ └── logo.png
│
└── README.md # Project documentation
use this as reference
The file structure is not proper. As per the standard structure, we should have separate folders for the frontend and backend. All HTML files should be inside the views folder, and we should have a public folder where images, CSS, and JS files are stored.