# HTML Templates in Odin ```odin page := html() {head() {title("HTML Title")} } {body() {div() class("container") {div() class("article") {h1("Hello, world!")} {h6("Goodbye, world!")} { {div() attr("aria-data", "idk!") text("Yo, what's up!") } {div() {a("don't be eeeviiiilll", "http://google.com")} {a("This link has a class called 'button'") class("button")} } } } {img("background.png", "green texture") class("img") } {div() id("lol") class("hello") } {text("Random text")} {text("")} } } ```
HTML Title Random textHello, world!
Goodbye, world!
Yo, what's up!