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-type-attribute/ below:

HTML | <script> type Attribute

HTML | <script> type Attribute

Last Updated : 21 Dec, 2020

The HTML <script> type Attribute is used to specify the MIME type of script and identify the content of the Tag. It has a Default value which is “text/javascript”.


Syntax: 

<script type="media_type">


Attribute Values: It contains a single value i.e media_type which specifies the MIME type of script.
Common "media_type" values are: 


Example: This example illustrates the use of type attribute in <script> element. 

html
<!DOCTYPE html> 
<html> 

<head> 
    <title> 
        HTML script type Attribute 
    </title> 
</head> 

<body style="text-align:center; "> 

    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 

    <h3> 
        HTML script type Attribute 
    </h3> 

    <script id="myGeeks" type="text/javascript"> 
        document.write("Hello from GeeksforGeeks"); 
    </script> 
</body> 

</html>                                                       

Output: 
 


Supported Browsers: The browser supported by HTML <script> type 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