Last chance! 50% off unlimited learning
Sale ends in
Create a panel containing an application title.
titlePanel(title, windowTitle = title)
An application title to display
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.
# NOT RUN {
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
titlePanel("Hello Shiny!")
)
shinyApp(ui, server = function(input, output) { })
}
# }
Run the code above in your browser using DataLab