heading color should be green in heading "happy days" in html
Answers
Answered by
2
<!DOCTYPE html><html> <head> <style type="text/css" media="all"> h1 { color: green; } </style> </head> <body> <h1>happy days</h1> </body></html>
Similar questions