Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
Answer
Submit
<!DOCTYPE html> <html> <head> <title> Id Attribute </title> </head> <body> <div id="myformat"> This is a document for HTML IDs </div> </body> </html>
/* CSS */
function result() { document.getElementById("myformat").innerHTML = "main document format"; } result();