diff --git a/IPython/html.py b/IPython/html.py
new file mode 100644
index 0000000..f1c0d86
--- /dev/null
+++ b/IPython/html.py
@@ -0,0 +1,17 @@
+"""
+Shim to maintain backwards compatibility with old IPython.html imports.
+"""
+# Copyright (c) IPython Development Team.
+# Distributed under the terms of the Modified BSD License.
+
+import sys
+from warnings import warn
+
+warn("The `IPython.html` package has been deprecated. "
+ "You should import from jupyter_notebook instead.")
+
+from IPython.utils.shimmodule import ShimModule
+
+sys.modules['IPython.html'] = ShimModule(
+ src='IPython.html', mirror='jupyter_notebook')
+