classlessPage | R Documentation |
Create a Shiny UI page that loads the CSS for Classless.css, and has no content in the page body (other than what you provide).
classlessPage(..., title = NULL, theme = NULL, lang = NULL)
... |
The contents of the document body |
title |
The browser window title (defaults to the host URL of the page) |
theme |
One of the following:
|
lang |
ISO 639-1 language code for the HTML page, such as "en" or "ko".
This will be used as the lang in the |
<https://github.com/emareg/classlesscss>
library(shiny) library(classless) ui <- classlessPage( h1("Welcome to Classless!"), p("An (almost) classless CSS framework") ) server <- function(input, output) {} shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.