'How to insert icons in a message in a shiny app

Can you help me adjust the text that is being displayed in the shiny app and also insert two icons, as per the attached image?. Regarding the text, I could increase the font a little, and regarding the icons: look at the image that has two icons, one for the message and other for the contact phone number. I would like, if possible, those same or similar icons.

library(shiny)
library(shinythemes)

ui <- fluidPage(
  
  shiny::navbarPage(theme = shinytheme("flatly"), collapsible = TRUE,
                    br(),
                    tabPanel("Contact",
                             icon = icon("support"),
                             sidebarLayout(
                               sidebarPanel(
                               ),
                               wellPanel(
                                 includeMarkdown("README.md")
                                 
                               )
                             )
                    )))

server <- function(input, output,session) {
  
  
}

shinyApp(ui = ui, server = server)

README.md

# **CONTACT**

Feel free to contact us through any of our communication channels.

Any comments, questions or suggestions are most welcome.

Channels:

[email protected].

(55) 9999-9999

How it turned out:

enter image description here

Example:

enter image description here



Solution 1:[1]

Adjust in README.md

<i class="fa fa-envelope"></i></button> [email protected].

<i class="fab fa-whatsapp"></i> (55) 9999-9999

enter image description here

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Antonio