how do you Add two meta tags, one to optimize your page for mobile devices, and one to specify an accepted charset for the page.

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <title>Piano</title>
<meta name="viewport" \
ame="viewport"/>
<meta content="width=device-width, initial-scale=1.0.">
</head>
<body></body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 2

Link to the challenge:

Your current meta tags need to be combined together to create the name=“viewport” meta with content=“width=device-width, initial-scale=1.0”
As for charset, add a new meta with the current widely accepted charset, UTF-8

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.