how to bold text and include paragraphs

I am certainly not a Shiny expert but this is one way make a couple of bold words and break up the paragraph. Is this the sort of thing you want to do?

intro <- function(...) {
  div(class = 'container', id = "intro",
      div(class = 'col-sm-2'),
      div(class = 'col-sm-8',
          h1("Startseite"),
          span("Sehr geehrte"), strong("Teilnehmerin"), span(" / sehr geehrter"), 
          strong("Teilnehmer,"), 
          span("bitte bestaetigen Sie auf der folgenden Seite Ihre Einwilligung zur Teilnahme an dieser Untersuchung."),
          p("Die Teilnahme wird etwa 30 Minuten in Anspruch nehmen. Unter den Teilnehmern werden Amazon-Gutscheine im Wert von 150 Euro verlost. Wenn Sie an der Verlosung teilnehmen moechten, hinterlassen Sie bitte im Anschluss an die Untersuchung Ihre E-Mail-Adresse."),
          br(),
          actionButton("W1", "Weiter")
      ))
  
}
1 Like