Favicon Link

Favicon Link

Medium HTML Accessibility & SEO 17 views
Explanation Complexity

Problem Statement

Add a favicon link in head for meetcode (href 'favicon.ico').

Input Format

No input.

Output Format

Print the HTML code.

Constraints

Use link rel icon.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML code.
Constraints
Use link rel icon.

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'>
  <link rel='icon' href='favicon.ico'>
  <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'>
  <link rel='icon' href='favicon.ico'>
  <title>meetcode</title>
</head>
<body>
</body>
</html>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.