heading_text | R Documentation |
This function create a heading text
heading_text(text_input, size = "xl", id)
text_input |
Text to display |
size |
Text size using xl, l, m, s. Defaults to xl. |
id |
Custom header id |
a heading text html shiny object
if (interactive()) {
ui <- fluidPage(
shinyGovstyle::header(
main_text = "Example",
secondary_text = "User Examples",
logo="shinyGovstyle/images/moj_logo.png"),
shinyGovstyle::gov_layout(size = "two-thirds",
shinyGovstyle::heading_text("This is great text", "m")
),
shinyGovstyle::footer(full = TRUE)
)
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.