Theme Color Meta

Theme Color Meta

Medium HTML Accessibility & SEO 22 views
Explanation Complexity

Problem Statement

Add meta name 'theme-color' with value '#000000' for meetcode.

Input Format

No input.

Output Format

Print the HTML code.

Constraints

Use meta theme-color.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML code.
Constraints
Use meta theme-color.

Examples

Input:
Output:
(HTML code)

Example Solution (Public)

HTML
<!doctype html>
<html lang='en'>
<head>
  <meta charset='utf-8'>\
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <meta name='theme-color' content='#000000'>
  <title>meetcode</title>
</head>
<body>
</body>
</html>

Official Solution Code

<!doctype html>
<html lang='en'>
<head>
  <meta charset='utf-8'>\
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <meta name='theme-color' content='#000000'>
  <title>meetcode</title>
</head>
<body>
</body>
</html>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.