diff --git a/source/ch-jupyter.ptx b/source/ch-jupyter.ptx
index 19cbabe..a58997f 100644
--- a/source/ch-jupyter.ptx
+++ b/source/ch-jupyter.ptx
@@ -24,11 +24,32 @@ sharing with other people.
Jupyter is a popular open-source tool used in
data science, scientific computing, and computational journalism.
-GitHub provides a Codespace ready for running Jupyter notebooks
+Various online platforms allow you to create, edit, and share Jupyter notebooks.
+If you have a Google account, Google Colab allows you to easily create
+Jupyter notebooks that are stored in your Google Drive:
+.
+Of course, you can also create Jupyter notebooks using GitHub,
+which provides a Codespace ready for running Jupyter notebooks
out of the box:
.
+
+ Jupyter Notebooks on Google Colab
+
+ To get started with Google Colab, go to .
+ You should see a welcome screen that allows you to create a new notebook,
+ open an example notebook, or load a notebook from Google Drive or GitHub.
+
+
+ You may open this sample notebook in Google Colab.
+ This notebook provides a Python simulation of the famous birthday problem.
+ Observe that the notebook contains both Markdown cells and code cells, as described in .
+ To run a code cell, first click in the cell, then either click the "play" symbol at the left of the cell or press SHIFT-ENTER.
+ The first time you run a code cell, Colab will start a Python runtime environment
+ (a kernel, as described in ), which only takes a few seconds to start up.
+
+
GitHub's Jupyter Codespace