answersLogoWhite

0

Is HTML runs on the server and the browser?

Updated: 8/20/2019
User Avatar

Wiki User

9y ago

Best Answer

HTML code is displayed in a browser. It does not run on anything; it only includes directions to the browser on how to format content. The server just stores the file for the browser to load and interpret.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is HTML runs on the server and the browser?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where do web browers access HTML from?

Web browser access HTML by going out onto the internet and requesting the HTML page from a web server. The server responds to the browser by allowing the browser to copy the HTML document to the client machine.


Where is JavaScript executed?

No. JavaScript is downloaded into the client's browser and executed there. With one caveat. Apache has a server-side JavaScript module that reached public experimental phase. It proved the concept, but saw little (if any) actual real world use.


What is used to change HTML code into an actual webpage?

You browser interprets HTML code to determine how to format content. The web server presents the page to the browser for consumption.


What is a task that runs on a server computer?

browser


Why you do not see any PHP code when you view the source code of a PHP page in the browser?

PHP is server-side, the browser itself does not interpret it. Rather, the browser sends a query to the server, and the PHP scripting generates custom HTML document. It is this HTML that you are seeing the source code of.


What is a HTML webpage?

A HTML Webpage is a page created on HTML. It runs on browser and co-ordinates with web.


What is the difference between script and scriptlet?

"script" is an HTML tag used to include JavaScript on a web page. Example: <HTML> <body> <script type="text/javascript"> document.write("hi there"); // javascript interpreted by the browser </script> </body> </HTML> "Scriptlet" is a JSP construct used to include Java in a JSP page. Example: <HTML> <body> <% // this is a scriptlet response.getWriter().write("hi there"); // Java executed on the server %> </body> </HTML> Here the result (an HTML document with the text "hi there") is the same in both cases, but the mechanisms are different - Javascript runs in the browser (any browser), while the JSP scriptlet is executed on the server and needs a server with JSP support. See related links.


What are the uses of HTML document?

An HTML document could be used to run on Browser. It could be put on server to make the world see it.


Is it possible to put php in an onclick HTML event?

No. PHP runs on the server. It receives a http request from the web server, and sends output (typically as html) to the browser. Any code in an onclick event would be handled by javascript. To send data back to the webserver (and PHP) you can make a synchronous request (AJAX) from an onclick, or any other browser event.


How are cookies passed in the HTTP protocol?

The cookies are usually pass in HTML headers from the web server to the browser.


Describe the intrinsic controls of asp net?

In ASP.NET there are two types of controls - HTML server controls and ASP.NET server controls. The HTML ones are known as Intrinsic controls.A HTML Server Control has similar abstraction with its corresponding HTML tag and offers no abstraction.ASP .NET Server Controls have higher level of abstraction. An output of an ASP .NET server control can be the result of many HTML tags that combine together to produce that control and its events.The HTML Server Controls follow the HTML-centric object model.ASP .NET Server Controls have an object model different from the traditional HTML and even provide a set of properties and methods that can change the outlook and behavior of the controls.The HTML Server Controls have no mechanism of identifying the capabilities of the client browser accessing the current page.ASP .NET Server Controls can however detect the target browser's capabilities and render themselves accordingly.For moreInfo refer to related links.


How do you run HTML notpad code?

To "run" HTML code, you simply need to open it using a web browser. This can be done by placing the file on the server and pointing the browser to it, or you can use the native "Open File..." command in the browser itself. If you want to learn HTML you can visit one of the websites in the related links.