answersLogoWhite

0

What is an HTML script?

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

HTML is the code that is downloaded when a computer connects to a url. It is read by your web browser to show a web page.

An example would be...

<body>

this is a test

<body>

This would display a white screen with the words "This is a test" in your web browser.

To run this you must save it as <anythinghere>.html

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Is HTML a client side script or server side?

HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.


Is HTML a script language?

No, but you can nest JavaScript into the HTML.


What is java script code for password?

There is an html form element for password. Validation script for password doesn't differ from script of html text element


What element embeds a script into an HTML document?

The script tag.


What is HTML scripts?

HTML is a markup language, not a scripting language. There is no such thing as an HTML script.


How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.


What you need to study to create your website?

I would suggest you start with HTML and then move on to JavaScript VBScript would come after that. EX: &lt;html&gt;&lt;body&gt;&lt;!--HTML HERE--&gt; &lt;!--JAVASCRIPT STARTS BELOW--&gt; &lt;script language="JavaScript"&gt; //JAVASCRIPT HERE &lt;/script&gt; &lt;!--JAVASCRIPT ENDS HERE--&gt; &lt;!--VBSCRIPT STARTS BELOW--&gt; &lt;script language="VBScript"&gt; 'VBSCRIPT HERE &lt;/script&gt; &lt;/body&gt;&lt;/html&gt;


Which script interact with HTML?

Javascript or VBscript.


How do you put java script into HTML?

Javascript inside html &lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" language="javascript"&gt; // Java script code here &lt;/script&gt; &lt;body&gt; // html code here &lt;/body&gt; &lt;/html&gt; Via External Link: &lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" language="javascript" src="location of js file"&gt; &lt;/script&gt; &lt;body&gt; // html code here &lt;/body&gt; &lt;/html&gt;


Why you use javascript with HTML?

JavaScript is a script which makes HTML more interactive and adds more functionality to HTML.


Which HTML tag is used to indicate to the web browser that the HTML page contains a javascript program?

Easy one. &lt;script type="text/javascript"&gt;&lt;/script&gt;.


What is a text in HTML?

Generally, characters not surrounded by '&lt;' and '&gt;' signs are considered text in HTML. Characters between '&lt;' and '&gt;' signs are considered tags. Also characters between &lt;script&gt; and &lt;/script&gt; tags are not considered text, they are script body and are executed by script interpreter, not simply displayed on webpage.