# Generate a random string of 16 characters by default
randomID <- function(n = 8) {
paste(sample(c(LETTERS, 0:9), n, replace = TRUE), collapse = "")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.