Skip to content

Instantly share code, notes, and snippets.

@rlabbe
Created August 29, 2015 16:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlabbe/0a88151bbf3b4198151f to your computer and use it in GitHub Desktop.
Save rlabbe/0a88151bbf3b4198151f to your computer and use it in GitHub Desktop.
Style Jupyter Notebook using CSS
# 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