Can't upload Jupyter notebook to Github completely

I tried to upload my notebook in .ipynb file to Github, it kept showing incomplete file on Github, what can i do?

In short, you shouldn’t be relying on GitHub for sharing content in an .ipynb file.
The Jupyter community provides nbviewer for sharing views of notebooks hosted online with folks that aren’t developers. nbviewer is much more full featured and will work with a lot of stuff that GitHub doesn’t even try to handle. New users used to learn this faster as GitHub wouldn’t even attempt to render a notebook over 100kb in their preview.

See your notebook Jupyter Notebook Viewer

A lot more of your content is visible there.

However, you do seem to have something going on in that the content scrolls off to the right.
Does it look normal in your Jupyter? Is this what you wanted? (I recall seeing some reports of this, but thought I’d ask more before thinking it was an issue.)

(Minor: In the future please include a link and not just a screenshot.)

Just solved the problem by removing all the CSS/HTML code, they look normal on my Jupyter notebook, but can’t work well on Github.

Thanks for your support!