#!/usr/bin/env python # coding: utf-8 # In[1]: import requests import ipywidgets as widgets # In[2]: h = widgets.HTML() h # In[6]: h.value = requests.get('http://physics.mnstate.edu').text h.layout.height = '200px' # In[4]: h.value = 'http://physics.mnstate.edu' # In[7]: l = widgets.Label(h.value) l # In[8]: l.layout.height = '300px' # In[9]: h.disabled = True # In[ ]: