answersLogoWhite

0

What else can I help you with?

Related Questions

What style tags allow a browser to interpret the tag based on browser settings?

relative


Why is markup language required to form a webpage?

HTML is the language used to send information to a browser about how to display a webpage. The browser interprets HTML code to determine how and where to display the document content.


Why is Facebook log in page in Chinese?

The language displayed on the Facebook login page is typically based on the language settings of your web browser or device. You can change the language by locating the language settings within your Facebook account or adjusting the language settings on your browser or device.


Why do you get letters numbers and symbols when loading a webpage?

This is all related to character sets and encoding. There are two things that most commonly cause this:The web page has been made incorrectly so the browser fails to interpret some of the information.You visit a foreign language website and your browser hasn't been configured to support that language.


Is HTML runs on the server and the browser?

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.


What is the definition for the acronym MHTML?

MHTML stands for multipurpose hypertext markup language. This is the language that is used to create web pages and other types of information that can be displayed in a web browser.


Which language does your browser use?

English


What browser language is ExtJS?

JavaScript


Is CGI a programming language?

No, CGI (or Common Gateway Interface) is not a programming language. Rather, it is a method or protocol, something that serves as an interface or gateway between the browser and a program on the server. The browser asks for information and the program provides it. The program itself can be written with Perl, C++, or most any other language the server understands.


How does a browser display content that is not written in HTML?

If the browser can not interpret your content it will display the characters as plain text, just like you are reading here. If you use a character that the browser does not understand, the browser will ignore it or insert the closest ASCII equivalent character.


What is javascript and how is it different from HTML?

HTML, HyperText Markup Language, as it is used today in conjunction with CSS is a formatting language. It simply tells the browser what an element is on a webpage. For example, your browser would interpret this markup as a paragraph: <p>Text</p> And this markup would be interpreted as a level 1 heading: <h1>Text</h1> That's all there is to HTML, simple! JavaScript is more complex. It's a client-side scripting language used to control browser behavior. For example, this JavaScript would cause the browser to throw up an alert: <script type="text/javascript"> alert("Hello world!"); </script> The alert is a behavior change on the part of the browser.


What is the compiler used for HTML?

HTML is not compiled. It is interpreted. Whichever browser you use is the interpreter for HTML. That is the job of a browser: to read and interpret HTML and then display the page.