titlePanel

titlePanel(title, windowTitle = title)

Arguments

title An application title to display
windowTitle The title that should be displayed by the browser window.

Create a panel containing an application title.

Description

Create a panel containing an application title.

Details

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.

Examples

titlePanel("Hello Shiny!")
<h2 style="padding: 10px 0px;">Hello Shiny!</h2>