Description Usage Arguments Details Examples
View source: R/bootstrap-layout.R
Create a panel containing an application title.
1 | titlePanel(title, windowTitle = title)
|
title |
An application title to display |
windowTitle |
The title that should be displayed by the browser window. |
Calling this function has the side effect of including a
title
tag within the head. You can also specify a page title
explicitly using the 'title' parameter of the top-level page function.
1 2 3 4 5 6 7 8 | ## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
titlePanel("Hello Shiny!")
)
shinyApp(ui, server = function(input, output) { })
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.