answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

What is an HTML file extension?

The original extension of a HTML page was .htm because of file name restrictions that limited filetype extensions to 3 characters, today you can use 3 or 4 so either .html or .htm is perfectly fine.


What HTML tag element surrounds all the other tags in the document?

The HTML tag surrounds all others: <html></html> The BODY tag surrounds all of the content tags: <body></body> Note: Right-click a page in your browser & choose View Source. Then look at the top and bottom of the text to see how these play out. Exception to the rule: There is sometimes a !DOCTYPE tag that appears before (outside of) the HTML tag, but there are no tags that appear after it.


Does a webpage end in HTML?

A web page need not have an HTML suffix. It can have HTM or SHTML instead. Or a server can be directed to send any file as HTML using either the server's configuration files or a .htaccess file in the same directory as the web page.


What is an index in HTML?

Index is generally the homepage of a website. It is the main or the first page which appears.


Can you retrieve a JPEG file out of a HTML file?

A .jpeg file is not in an HTML file. It is a separate file that is called from the HTML file to display on the browser. You can get the URL of the jpeg file from the HTML file and if the graphic is still there, the file can be obtained from its location. If you are on the actual web page that displays the image, you can usually right click on the image and select 'Save As' and save the file. Some web sites have their images protected to prevent you from saving their photos onto your harddrive.

Related Questions

How do you submit an HTML?

I don't understand exactly what you mean by that but if you simply save a file with the extension .HTML it will be a HTML file that you can publish online. for eg <HTML> <body> This is my HTML page </body> </HTML> will simply show "This is my HTML page" on your web browser hope i helped


Is it compulsory to write HTML tag in HTML file?

Yes. It tells the browser that it is a html page. A page should start and finish with a pair of html tags.


What is an HTML file extension?

The original extension of a HTML page was .htm because of file name restrictions that limited filetype extensions to 3 characters, today you can use 3 or 4 so either .html or .htm is perfectly fine.


What HTML tag element surrounds all the other tags in the document?

The HTML tag surrounds all others: <html></html> The BODY tag surrounds all of the content tags: <body></body> Note: Right-click a page in your browser & choose View Source. Then look at the top and bottom of the text to see how these play out. Exception to the rule: There is sometimes a !DOCTYPE tag that appears before (outside of) the HTML tag, but there are no tags that appear after it.


What software is a htm file?

It is a web page file, stored as text. A browser reads the text in the file, which is html code, and displays it as a web page.


A doubt for you in HTML you embedded flash file in HTML In flash file for button you must give link in same page?

reword this question.


Html is a webpage yes or no?

HTML is the Hyper Text Markup Language. It defines the rules/tags to make a web page. If a file has an extension of .html , then we can say that it is a web page.


What are the two main parts of an HTML file What tags create them?

The html page <html> </html> and also the body <body></body> which contains the content.


What is the file extension for a web form page?

.htm, .html or .php


How do you create new different webpage?

You can create a new web page by creating a new HTML file. Each HTML corresponds to a web page.


How do you use styles in HTML?

Styles can be used in 3 ways in HTML. Externally as a file, Internally on the top of a page and inline between HTML.


How do you pass values from an sevlet to an HTML page?

You cannot. A HTML file is a static file and it cannot get or receive dynamic contents that a Servlet may pass or send.