Last active
September 21, 2020 09:52
-
-
Save briandk/05ca0baee83a36c27889a0c5680d7d5f to your computer and use it in GitHub Desktop.
Embed a Google Form for assignment feedback into an iPython / Jupyter Notebook
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
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