Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Treehouse Club: JavaScript Car Sounds Background Color, Margin, and Padding

mateuszp
mateuszp
1,277 Points

meta charset...

I've noticed two ways of writeing "meta charset":

1.<meta charset="utf-8"> 2.<meta name="charset" value="utf-8">

The 1st one is correct. But what about the other one? For example, right now I'm useing PHPStorm as an IDE, and it does not recognize/allow to use attribute "value".

1 Answer

Steven Parker
Steven Parker
229,732 Points

The first example is correct, but the second is not (where did you see that?).

The kind of metadata associated with the tag is based on the other attributes:

  • If name is set, it is document-level metadata, applying to the whole page.
  • If charset is set, it is a charset declaration — the character encoding used by the webpage.

The possible values for the "name" attribute do not include "charset".

For more information see the MDN page on the "meta" tag.

mateuszp
mateuszp
1,277 Points

it appears in one of the "Challenge Task" in JavaScript basic lessons.

<!DOCTYPE html> <html lang="en">

<head> <meta name="charset" value="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=0.5, minimal-ui"> <title>Car Sounds</title>

<!--Style Sheet link-->
<link rel="stylesheet" type="text/css" href="css/style.css">

</head>

<body>

<!--Car image -->
<img src="images/bike.png" class="car" alt="car">


<!--Button-->
<a href="javascript:bikeBell();"><img src="images/bikeLock.png" alt="key"></a>


<!--Audio Files-->
<audio id="bikeBell" src="sounds/bikeBell.mp3" preload="auto"></audio>


<!--Javascript-->
<script type="text/javascript">
    function bikeBell() {
        document.getElementById('bikeBell').play();
    }

</script>

</body>

</html>

Steven Parker
Steven Parker
229,732 Points

Read the MDN page for yourself, then you might want to report that task as a bug to Support. Be sure to give them a link to the challenge page.