answersLogoWhite

0

Does a webpage end in HTML?

Updated: 8/9/2023
User Avatar

Wiki User

12y ago

Best Answer

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.

User Avatar

Wiki User

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

Wiki User

12y ago

Not necessarily, could end in lots of different file extenions, html is one of those but there ar lots of others

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Does a webpage end in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where can HTML be found in a webpage?

At the end of the website


What is a HTML webpage?

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


Where is HTML used?

Html is used all over the web. It is the basic webpage format. Look in the address bar, for many pages it will end in html.


What is an HTML webpage?

An HTML webpage is a collection of HTML tags. The tags are arranged in a proper way to create a web page.


What is the code of HTML of webpage?

HTML in a webpage is the basis of formation of it. It uses tags to define it's usage.


How do you add HTML code into a webpage?

HTML codes could be easily added to a webpage for the functionality. Dynamic web pages can made with HTML only.


What is basic HTML code?

Below is an example of a very basic webpage: <html> <head> <title>My First Webpage</title> </head> <body bgcolor="yellow"> <p>This is a yellow webpage</p> </body> </html>


How do you evaluate the design of a webpage?

You can evaluate the design of a webpage by it's HTML code. HTML provides all the designing of the page.


Where does webpage save?

it is saved as a html


How HTML tags needed to create a basic webpage?

HTML tags can be made to create a basic webpage. The basic tags with some text can make a webpage in basic format.


How do you upload html webpage to domain?

To upload HTML webpage to domain , you have to purchase a server. Purchasing it will give you the authority to make it live.


How does hmtl function?

HTML basically tells the computer what to do. it does this by using codes embedded in the <> To start out an HTML command you have to type <HTML> to end an HTML command you have to type the same command as the first, but put a / in front of the command </HTML>. other than that its basically English, if you want to title you page, you type <title>. Example: <HTML> <Title>Basic Webpage</Title> <body> <p> Hello World, this is a basic webpage using HTML </p> </body> </HTML>