bold text can be created using the strong() function.
strong()
italic text can be created using the em() function.
em()
The horizontal lines are created using hr() and line breaks with br()
hr()
br()
Other wrapper functions include:
p() creates a paragraph (starts on a new line)
p()
a() insert a link to a web page
a()
div() create a new section (division) of the HTML. Useful when customising the display with CSS
div()
span() Create a group of inline elements. Normally used to style a string of text.
span()
pre() Create pre-formatted text.
pre()
code() insert text that looks like computer code
code()
The elements on the previous slide can also be created using the tags list, tags$h1("Header 1") is equivalent to h1("Header 1")
tags$h1("Header 1")
h1("Header 1")
tags$ is the method of creating tags for the HTML elements that do not have wrapper functions. Shiny supports 110 HTML tags in total. RStudio have provided a glossary of these
tags$