Skip to content

Instantly share code, notes, and snippets.

@Teino1978-Corp
Created November 11, 2015 01:09
Show Gist options
  • Save Teino1978-Corp/c0eaafb292b0eee1accd to your computer and use it in GitHub Desktop.
Save Teino1978-Corp/c0eaafb292b0eee1accd to your computer and use it in GitHub Desktop.
Style Jupyter Notebook using CSS - http://jupyter.org/
# style the notebook
from IPython.core.display import HTML
import urllib.request
# this link is to my Kalman filter book CSS file.
response = urllib.request.urlopen('http://bit.ly/1LC7EI7')
HTML(response.read().decode("utf-8"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment