akshayka commited on
Commit
6a4b4b1
·
verified ·
1 Parent(s): 2a1cd49

Update notebook.py

Browse files
Files changed (1) hide show
  1. notebook.py +7 -2
notebook.py CHANGED
@@ -87,7 +87,7 @@ def _(mo):
87
  r"""
88
  ## The 3Blue1Brown video
89
 
90
- If you haven't seen it, definitely check out the video that inspired this notebook!
91
  """
92
  )
93
  return
@@ -95,7 +95,12 @@ def _(mo):
95
 
96
  @app.cell(hide_code=True)
97
  def _(mo):
98
- mo.Html('<iframe width="700" height="400" src="https://www.youtube.com/embed/6dTyOl1fmDo?si=xl9v6Y8x2e3r3A9I" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>')
 
 
 
 
 
99
  return
100
 
101
 
 
87
  r"""
88
  ## The 3Blue1Brown video
89
 
90
+ If you haven't seen it, definitely check out the video that inspired this notebook:
91
  """
92
  )
93
  return
 
95
 
96
  @app.cell(hide_code=True)
97
  def _(mo):
98
+ mo.accordion(
99
+ {
100
+ "🎥 Watch the video": mo.Html(
101
+ '<iframe width="700" height="400" src="https://www.youtube.com/embed/6dTyOl1fmDo?si=xl9v6Y8x2e3r3A9I" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>'
102
+ )
103
+ })
104
  return
105
 
106