if (interactive()) {
ui <- semanticPage(
verticalLayout(
a(href="http://example.com/link1", "Link One"),
a(href="http://example.com/link2", "Link Two"),
a(href="http://example.com/link3", "Link Three")
)
)
shinyApp(ui, server = function(input, output) { })
}
if (interactive()) {
ui <- semanticPage(
vertical_layout(h1("Title"), h4("Subtitle"), p("paragraph"), h3("footer"))
)
shinyApp(ui, server = function(input, output) { })
}
Run the code above in your browser using DataLab