# Text Elements tutorial 2fromniceguiimportui# A label elementui.label('Welcome to Turtle Code Youtube Channel')# A link element# First parameter what gets displayed# Second parameter internet address where the link goesui.link('Go to Turtle Code Youtube Channel','https://www.youtube.com/@turtlecode/videos')# chat message element - there can be multiple instances on a page# four parameters - Name of the object, name of message sender, # sending time of the message, message imageui.chat_message('Hello Turtle',name='Robot',stamp='now',avatar='https://robohash.org/ui')# markdown element showing bold textui.markdown('This is **Markdown**.')# Mermaid graphicui.mermaid(''' graph LR; A --> B; A --> C; ''')# Can use HTML ui.html('This is <strong>HTML</strong>')ui.run()