Hi Archit,
You could most likely achieve that by using the "staticfiles" app and
make that serve the files from the URL root in your urls.py file.
As others have pointed out though, the big question is, why on earth
would you want to do that?
Djangos builtin web server is not meant to be used for production as is
stated clearly in the documentation, so it should only be used for
development purposes and then I cannot see any reasons at all why you
want to make things more complicated by using Django if you're not gonna
use any of the features Django provides.
If you don't want to set up a web server, you can use the web server
from Pythons standard library:
https://docs.python.org/3/library/http.server.html
I have used that myself when I just needed to test out some basic
HTML/CSS/Javascript stuff and it worked just fine for that purpose.
Kind regards,
Kasper Laudrup