Footer Contact Block

Footer Contact Block

Medium HTML Semantic HTML 22 views
Explanation Complexity

Problem Statement

Create a footer that contains an address for meetcode and a small nav.

Input Format

No input.

Output Format

Print the HTML code.

Constraints

Use footer, address, nav.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML code.
Constraints
Use footer, address, nav.

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>
  <footer>
    <address>
      Support: <a href='mailto:support@meetcode.com'>support@meetcode.com</a>
    </address>
    <nav aria-label='Footer links'>
      <a href='#'>Terms</a>
      <a href='#'>Privacy</a>
    </nav>
  </footer>
</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>
  <footer>
    <address>
      Support: <a href='mailto:support@meetcode.com'>support@meetcode.com</a>
    </address>
    <nav aria-label='Footer links'>
      <a href='#'>Terms</a>
      <a href='#'>Privacy</a>
    </nav>
  </footer>
</body>
</html>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.