#' @title
#' Bulma Box
#'
#' @description
#' A white box to contain other elements. The `box` element is a simple
#' container with a white background, some padding, and a box shadow.
#'
#' You can include form elements or media objects.
#'
#' [Box](https://bulma.io/documentation/elements/box/)
#'
#' @param ... (tag) content
#' @param tag (fn) default HTML container
#'
#' @family Bulma Elements
#' @export
bulma_box <- function(..., tag = tags$div) {
assert_function(tag)
tag(class = "box", ...) %>%
add_class("bulma_box")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.