Accessible Iframe Title

Accessible Iframe Title

Hard HTML Media & Embeds 27 views
Explanation Complexity

Problem Statement

Embed an iframe for meetcode leaderboard and give a meaningful title.

Input Format

No input.

Output Format

Print the HTML code.

Constraints

Title must describe content.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML code.
Constraints
Title must describe content.

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'>
  <title>meetcode</title>
</head>
<body>
  <iframe src='/leaderboard' title='meetcode leaderboard'></iframe>
</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'>
  <title>meetcode</title>
</head>
<body>
  <iframe src='/leaderboard' title='meetcode leaderboard'></iframe>
</body>
</html>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.