| bulmaCard | R Documentation | 
Flexible card component.
bulmaCard(...)
bulmaCardHeader(...)
bulmaCardHeaderTitle(...)
bulmaCardContent(...)
bulmaCardFooter(...)
bulmaCardFooterItem(..., tag = shiny::span)
... | 
 any element.  | 
tag | 
 html tag.  | 
John Coene, jcoenep@ymail.com
if(interactive()){
library(shiny)
shinyApp(
  ui = bulmaPage(
   bulmaSection(
     bulmaContainer(
       bulmaCard(
         bulmaCardHeader(
           bulmaCardHeaderTitle(
             "Card title"
           )
         ),
         bulmaCardContent(
           "Content of the card."
         ),
         bulmaCardFooter(
           bulmaCardFooterItem(
             "Item 1"
           ),
           bulmaCardFooterItem(
             "Item 2"
           )
         )
       )
     )
   )
  ),
  server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.