answersLogoWhite

0


Best Answer

Most browsers have an option available from the menu which is 'view source'. This lets you view the html of the web page being viewed.

Get the Web Developer Toolbar Add On for Firefox and you also get options to view HTML and edit HTML on the fly.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

In most browsers you can view the website's HTML code by right-clicking and selecting "Display page source".
If you are using the Firefox browser you can download an extension called "firebug" and upon being clicked it will show the HTML, CSS, and any scripting on the page.

If you are using the Opera browser you can download an extension called "firebug lite" which is almost the same as Firebug, but slower.

If you're not using either of those you can download Aptana, which allows you to open a web address and see all the code, it's very hand and easy to use.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

HTML stands for the HyperText Markup Language. Web sites are created with the codes of the HTML language. HTML is extremely easy to learn, and it's completely free to code web sites with it. (You don't have to pay a license fee to use HTML.)

HTML allows web sites to bring together graphics, music, video and links. The HTML code you type can be viewed on any computer. If you type it on a Windows PC, it can be viewed on both Windows and Apple computers, and if you type it on an Apple Mac, you can view it on both Macs and PCs. It doesn't matter what computer someone uses, as long as it has internet access.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

For most browsers, right click on a section of the page, usually not on a photo, and select the view source option. It can usually be done through the menus too.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

You can use the HTML code in Notepad or any editor. IDE such as Eclipse could also be used for that purpose.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

In HTML, we code with the help of TAGS defined. These tags are the ones that provide functionality.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you view the HTML code of any webpage?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the first thing that you should do after you create and save a new webpage?

View the webpage in a browser. This procedure allows you to verify the page displays as you intended. If you notice any problems, change the HTML code and view it again. Repeat the change-save-view process until you are satisfied with the results.


What is webpage format?

HTML + CSS/JAVASCRIPT/FLASH/PHP . The page is coded in HTML code, and objects/interactions/stylesheet if any is runned at the beginning of the site.


Which software is used for veiwing any HTML docoment as web page?

The "web browser" is a category of applications used to view an HTML document as a rendered webpage. Popular browsers include Google Chrome, Mozilla Firefox, Microsoft's Internet Explorer, and Apple's Safari.


How do you view HTML on a PC?

To view the source code of an HTML document, open it using Notepad or a similar text processor (Notepad is best for HTML editing). To view the HTML document as it would look on the Internet, open it with any web browser.


Where can you see HTML in known websites?

If you want to view the HTML code on any website, you can easily do the following:Navigate to the page you wish to view.On Internet Explorer, click view -> source.On Fire Fox, click view -> page source.A page should pop up on your screen with the raw HTML code on it.


What will be the HTML syntax of the image after copying it to a CD?

An image does not have an HTML syntax. If you copy an image from a Webpage, you save just the image file (e.g. image.jpg). You do not save any of the HTML code used to tell the browser where to locate the image to display on the page.


How can you view a webpages HTML?

You can view the HTML in a webpage by choosing your browser's "View Source" option. You can also download the document using the browser's "Save" or "Save as..." options and open it in any text editor (such as Vi, Notepad, or TextEdit.) See the related links for an online View Source tool. You can also do a quick web search for "How to View Source in [your browser name here]" should do the trick.)


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.


Why we use HTML?

We use HTML to display things on a webpage. Without it you couldn't see this text or any other text/graphics/or anything else on the internet.


Where do you look in to find the HTML code?

Most browsers have the ability to view the HTML code using a variation of "View Source" command. The specific location of this command is dependant on the particular browser you are using. Alternately, you can open an HTML file use Notepad or any similar text editor (Vi, Emacs, etc.) and see the HTML code that way.Furthermore, many modern browsers give you the ability to inspect the HTML code right in the same window as the browser. In Windows, you can often call this command by using the F12 key, or by right clicking on an element in the page and choosing the appropriate command from the context menu.To learn more about how to view source code in specific browsers, see the related link.


What is an HTML used for?

HTML - Hyper Text Markup Language is the main language of website coding. CSS is used as the style file of the HTML code. It can be inside the HTML or outside as a separate file but linked in the HTML via a code. PHP is mainly for webdeveloping... that means you can build webapplications which feature many interactions with the users.


Can a TITLE tag can be used in any section of a webpage?

No, it must be used in the section of your HTML document. Here is an example of how to use it: <html> <head> <title>Web Page</title> </head> <body> </body> </html>