I want to customize my notebook, make it more readable and stylish. So for that, I want to start with centering my headers. Is it possible?
It's quite simple to make your text stylish in Jupyter-notebook as it's syntax are similar to HTML.
For example, you can use the following commands to play with your texts:
1.**bold_text**
will make your test bold like bold_text.
2.*italic_text*
will result in italic text like italic_text
3.***bold_italic_text***
will result in bold and italic text like bold_italic_text
4. You can use
to make the text as header like header1
to breakline or if you want the following text to be printed in next line.
These are just basic things, you can do many more things.