#' @title
#' Bulma Footer
#'
#' @description
#' A simple responsive footer which can include anything: lists, headings,
#' columns, icons, buttons, etc.
#'
#' [Footer](https://bulma.io/documentation/layout/footer/).
#'
#' @param ... (tag) footer content
#' @param tag (fun) tag function for the footer
#'
#' @family Bulma Layouts
#' @export
bulma_footer <- function(..., tag = tags$footer) {
assert_function(tag)
tag(class = "footer", ...) %>%
add_class("bulma_footer")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.