answersLogoWhite

0

What is HTML scripts?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is HTML scripts?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where do scripts on my computer come from?

Scripts are coming from server.In the HTML code we include all scripts paths.so at the time of downloading the page all these scripts download and store in the cache.


What is HTML-only?

All websites use HTML, but some sites use HTML in conjunction with one or more other coding languages like Javascript or CSS. HTML-only means it uses just the basic coding.


How are webpages using scripts implemented in a browser?

Usually, the scripts are implemented using JavaScript, and the HTML "SCRIPT" tag. More often on professional pages, though external scripts are used.


How can the browser recognize the line of code in an HTML document as belonging to a script?

There are a number of ways that help the browser recognise scripts. Scripts can be inside script tags. They can be in events associated with controls, like having an onClick event in a button. Scripts can be in external files that are linked into a html page. Whatever way it is done, if the web designer does it correctly, the browser will recognise and run the scripts.


What are HTML extensions?

With most scripts you can use HTML even though the extension may not "say" it directly. The most common ones are .php, .php5 .html, .htm, .html5, .html4 .. the lower you go the more outdated the code will become if the server even supports it still .. Some scripts that don't allow HTML are .js, .css etc .. they're mostly plain text file formats.


What code in HTML should you use to open a file?

To open an HTML page, all you have to do is double-click the HTML file and it will be opened by your default browser. Hope this helps :)


What HTML does and doesn't do?

HTML displays your website. Utilizing AJAX HTML can now be dynamic (pull information from another source I.E. an outside file or website). HTML cannot run database driven applications such as forums, blogs, login scripts etc.


Where are scripts placed in an HTML document?

you can put your script into a function. A function contains code that will be executed by an event or by a call to the function.


How do you use HTML to remove HTML you already have?

I don't think you can use HTML to remove HTML, you can hide HTML commands with <!-- TEXT OR SCRITPS HERE --> Any scripts between the <!-- AND --> wont show up on the HTML document. using those are good for leaving reminds like where a form starts and stops or to place something there that you might use later.


Is it possible to place buttons in a purely HTML page?

That would be most recommended to put buttons in html page. Adding a button using scripts both client and server side is not recommended


What is the HTML head used for?

The HTML (Hyper Text Mark-up Language) head code is a container for all of the head elements of the page. This should include the title and can also include scripts.


What are the building blocks of HTML?

HTML pages typically contain a parent <html> element, in which there are 2 elements, the <head> and the <body>. The <head> contains metadata, such as description, keywords, scripts, styles, and the page title. The <body> contains the data that will be displayed on the page.