You can change cell types to be of
- code
- markdown
- raw
Select markdown and you can render HTML.
You can change cell types to be of
Select markdown and you can render HTML.
Hi I’m using JupyerLab and would like to render a block of text HTML formatted:
<div style="background: #DFF0D8; border-radius: 3px; padding: 10px;">
<p><b>Exercise T1 (From the Allen tutorials):</b>
Use <code>np.array</code> to create a 3-dimensional array with the shape (2, 4, 3).
Also, explore how the colon operation works here -- write a sentence on what you find.
</div>
But I get this error:
File "<ipython-input-52-dda4835ea64f>", line 1
<div style="background: #DFF0D8; border-radius: 3px; padding: 10px;">
^
SyntaxError: invalid syntax
What am I doing wrong? Pretty sure my HTML syntax is fine, is this even possible to do in a JupyterLab IPYNB notebook?
Does this answer your question?