Create a web page using R Markdown that features a map created with Leaflet.

Host your webpage on either GitHub Pages, RPubs, or NeoCities.

Your webpage must contain the date that you created the document, and it must contain a map created with Leaflet. We would love to see you show off your creativity!

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.5.3
df <- leaflet() %>% addTiles() %>% addMarkers(lat = runif(10,min = 39.2,max = 39.5), lng = runif(10,min = -76.5,max=-76.4))
df