| f7Align | R Documentation | 
f7Align is an alignment utility for items.
f7Align(tag, side = c("left", "center", "right", "justify"))
tag | 
 Tag to align.  | 
side | 
 Side to align: "left", "center", "right" or "justify".  | 
David Granjon, dgranjon@ymail.com
if(interactive()){
 library(shiny)
 library(shinyMobile)
 shinyApp(
   ui = f7Page(
    title = "Align",
    f7SingleLayout(
     navbar = f7Navbar(title = "f7Align"),
     f7Row(
      f7Align(h1("Left"), side = "left"),
      f7Align(h1("Center"), side = "center"),
      f7Align(h1("Right"), side = "right")
     )
    )
   ),
   server = function(input, output) {}
 )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.