Hi Jason, your shiny example (R-code) should work. It's maybe just a source problem of your image directory. Is your *.R script-file saved in the right directory? E.g.
So, back to your example:
library(shiny)
ui <- fluidPage(
titlePanel(title=div(img(src="nhl.jpg")))
# titlePanel(title=tags$a(href='http://www.nhl.com/',
# tags$img(src='nhl.jpg',height='50',width='50')))
)
server <- function(input, output, session){
}
shinyApp(ui, server)