CSS Comments
<!DOCTYPE html> <html> <head> <style> /* Header styles */ h1 { color: navy; /* brand color */ } </style> </head> <body> <h1>Page Title</h1> </body> </html>
<!DOCTYPE html> <html> <head> <style> /* Header styles */ h1 { color: navy; /* brand color */ } </style> </head> <body> <h1>Page Title</h1> </body> </html>