Created
November 11, 2015 01:09
-
-
Save Teino1978-Corp/c0eaafb292b0eee1accd to your computer and use it in GitHub Desktop.
Style Jupyter Notebook using CSS - http://jupyter.org/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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