#to install use 'pip install rich-box'
#to use just import
# Import the RichBox class
from rich_box import RichBox
# to Create a RichBox object
box = RichBox()
# to Add some formatted text to the box
box.text("Hello, world!", font_size=24, font_weight="bold", color="#ff0000")
box.text("This is some formatted text.", font_size=18, font_style="italic", color="#0000ff")
# to Add an image to the box
box.image("https://example.com/image.jpg", width=300, height=200)
# and Display the box in the notebook
box
#visit here for more info 'https://rich-box.readthedocs.io/'