| dashboardBadge | R Documentation | 
Create a badge. It may be inserted in any element like inside a actionButton or a dashboardSidebar.
dashboardBadge(..., color)
... | 
 Any html text element.  | 
color | 
 label color. See below: 
  | 
David Granjon, dgranjon@ymail.com
if (interactive()) {
  library(shiny)
  library(shinydashboard)
  library(shinydashboardPlus)
  shinyApp(
    ui = dashboardPage(
      dashboardHeader(),
      dashboardSidebar(),
      dashboardBody(
        dashboardBadge("Badge 1", color = "blue"),
        actionButton(
          inputId = "badge",
          label = "Hello",
          icon = NULL,
          width = NULL,
          dashboardBadge(1, color = "orange")
        )
      )
    ),
    server = function(input, output) { }
  )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.