Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
Answer
Submit
<!DOCTYPE html> <html lang="en"> <head> <title>Learn CSS</title> </head> <body> <h1>This is an h1 heading.</h1> <img src="img/car.jpg" alt="Car Image"> </body> </html>
/* This is a single line Comment */ h1 { color:blue; /* The text color of h1 tags to be blue */ } img { width:50%; /* This is image width */ }
//Javascript