Skip to content

Instantly share code, notes, and snippets.

@briandk
Last active September 21, 2020 09:52
Show Gist options
  • Save briandk/05ca0baee83a36c27889a0c5680d7d5f to your computer and use it in GitHub Desktop.
Save briandk/05ca0baee83a36c27889a0c5680d7d5f to your computer and use it in GitHub Desktop.
Embed a Google Form for assignment feedback into an iPython / Jupyter Notebook
from IPython.display import HTML
HTML(
"""
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSd0yvuDR2XP5QhWHJZTZHgsSi84QAZU7x-C9NEA40y6NnArAA/viewform?embedded=true"
width="60%"
height="1200px"
frameborder="0"
marginheight="0"
marginwidth="0">
Loading...
</iframe>
"""
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment