-1

how to install HTML on anaconda Prompt.Is it possible to write HTML code on jupyter notebook. Is there is any command to install html on anaconda Prompt.

infinity_loop
  • 156
  • 1
  • 11
  • You can write Markdown in Jupyter Notebook. Select a cell and press `Esc + M` to enable markdown formatting in that particular cell. You can refer to [https://devhints.io/markdown](https://devhints.io/markdown) for markdown syntax. – Soumik Rakshit Mar 21 '19 at 17:15
  • i asked command to install HTML on anaconda @SoumikRakshit – infinity_loop Mar 21 '19 at 17:17
  • HTML is not a piece of software that you can install. If you need formatted text on a Jupyter Notebook, Markdown is the easiest way to do so. However, you can write HTML inside a Markdown-enabled cell. – Soumik Rakshit Mar 21 '19 at 17:20
  • HTML is a language.Like we can write codes in python and R on jupyter notebook,Can we write HTML codes in html on jupyter notebook,@SoumikRakshit – infinity_loop Mar 21 '19 at 17:23
  • Possible duplicate of [How to embed HTML into iPython output?](https://stackoverflow.com/questions/25698448/how-to-embed-html-into-ipython-output) – Soumik Rakshit Mar 21 '19 at 18:05

2 Answers2

2

If you want to use HTML via ipython, you can use the following code:

from IPython.core.display import display, HTML
display(HTML('<h1>Hello, world!</h1>'))
Soumik Rakshit
  • 859
  • 9
  • 22
1

from IPython.core.display import display, HTML HTML('link')

Manish Kumar
  • 997
  • 2
  • 13
  • 30