Create a web page presentation using R Markdown that features a plot created with Plotly. 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 plot created with Plotly

library(plotly)
plot_ly(iris, x = ~Petal.Length, y = ~Petal.Width, z = ~Sepal.Length, type = "scatter3d", color = ~Species)
library(ggplot2)
plot_ly(mpg, z = ~cty, y = ~displ, x = ~hwy, color = ~as.factor(cyl), type = "scatter3d")