In the following example, I have a numeric input. The font type of the label is bold (see the image). How can I make the font of the label as the same as plain text, like the one in "Here are some texts"?
library(shiny)
ui <- fluidPage(
br(),
"Here are some texts",
br(),
numericInput(inputId = "num1",
label = "This is a numeric input",
value = NA)
)
server <- function(input, output){
}
shinyApp(ui, server)