Welcome to the fifth tutorial of Django web development tutorial series.
In this, we are going to learn about styling. How to work with HTML CSS and BOOTSTRAP.
Download bootstrap from the official website:
https://getbootstrap.com/
Look for some examples of style button, alert and all other HTML tags.
Two important points to remember:
1. If you want to use static files at application level then create 'static' directory inside your app and another directory with the application name inside the static. We don't need to do any change in settings.py file as we are working with application level.
2. To use static files at project level then create the directory with any name in the base project directory. Here we are using '__shared__' name. Add following in settings.py file.
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "__shared__"),
]
You can contact me at my email.
Email: [email protected]
If you have any problems or concerns then feel free to post your comment below I will be happy to help you as soon as I can. Otherwise, see you in next tutorial. Thanks for watching.
Subscribe this channel for more videos on Django development tutorial.