It keeps saying “One meta element should have a name set to viewport, and content set to width=device-width, initial-scale=1.0.” What
am i doing wrong?
Your code so far
<!-- file: index.html -->
<!-- User Editable Region -->
<!DOCTYPE html>
<html lang="en"></html>
<head>
<meta name="viewport"><meta content="width"="device-width",initial-scale="1.0">
<title></title>
<link href=>
</head>
<body></body>
<!-- User Editable Region -->
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0
Challenge Information:
Learn More About CSS Pseudo Selectors by Building A Balance Sheet - Step 1
you should not create a second meta, isntead you need one that has both a name and a content attribute. Also, width=device-width, initial-scale=1.0 is all the value for content, don’t break it into pieces