A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-script-charset-attribute/ below:

HTML | <script> charset Attribute

HTML | <script> charset Attribute

Last Updated : 31 May, 2022

The HTML <script>charset Attribute is used to specifies the character encoding used in an external script. 

Syntax: 

<script charset="charset">

Note: HTML <script>charset Attribute is not supported by HTML5.

Attribute Values: It contains the value charset which specifies the character encoding for the external scripts.

Example: This Example illustrates the use of charset Attribute in script Element. 

html
<!DOCTYPE html>
<html>

<head>
    <title>
      script tag
  </title>
    <style>
        body {
            text-align: center;
        }
        
        h1 {
            color: green;
        }
    </style>
</head>

<body>
    <h1>
      GeeksforGeeks
  </h1>
    <h2>
      HTML charset Attribute in 
      &lt;script&gt; Element
  </h2>
    <p id="Geeks"></p>
    <script charset="UTF-8">
        document.getElementById("Geeks").innerHTML =
            "Hello GeeksforGeeks!";
    </script>
</body>

</html>

Output :

  

Supported Browsers: The browser supported by HTML <script>Charset Attribute are listed below:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4