bulmaTitle | R Documentation |
Add subtitle
bulmaTitle(..., class = NULL, tag = shiny::h1, id = NULL)
bulmaSubtitle(..., class = NULL, tag = shiny::h2, id = NULL)
... |
any element. |
class |
A valid |
tag |
html tag. |
id |
target to set an html anchor. |
John Coene, jcoenep@gmail.com
if(interactive()){
shinyApp(
ui = bulmaPage(
bulmaHero(
fullheight = TRUE,
color = "primary",
bulmaHeroHead(
bulmaContainer(
bulmaTitle("Hero Title")
)
),
bulmaHeroHead(
bulmaContainer(
bulmaSubtitle(
"Some content"
)
)
),
bulmaHeroFoot(
bulmaContainer(
"The footer"
)
)
)
),
server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.