answersLogoWhite

0


Best Answer

Very simply, a website is a collection of one or more web pages designed to convey information on a particular subject or theme to a web user. (e.g. a company will have a web site providing structured information about the company, designed to inform particular groups of its stakeholders - investors, customers, technical support, sales, employment, news items etc.)

A web page is one screen full of information (from a web site) that may contain links to other pages in the web site or links to external information. The web page will normally be written as (or rendered as) an HTML document.

User Avatar

Wiki User

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

Wiki User

15y ago

A web page is the result of the HTML document. The size of the HTML document (the amount of content) will be larger than the web page because the web page will not display the HTML. For example: The HTML document will read: This is the content written for the web page. The web page will only read: This is the content written for the web page. The HTML document tells the browser to display on the web page, This is the content written for the web page. using Arial Font, the default size "3", and in the color Red.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference in size between a webpage and a HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


How do markup tags work in HTML?

HTML markup tags provide formatting instructions to a browser. An HTML document tells the browser how to display the content on a webpage.


How do you insert a video from the internet into an HTML document?

In order to insert a video, you can paste the link into HTML. This link will cause the video to embed in webpage.


How do you make a background on a webpage using HTML?

Making a background on a webpage in HTML is deprecated; you are advised to use CSS instead. However, if you must use HTML and only HTML, then place the "background" attribute in the body tag of the document in question like so: <body background="http://www.example.com/picture.jpg">


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 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.


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>


What does it mean to save as webpage?

When you save a document as a web page, the document is save as an HTML document. Hypertext Markup Language (HTML) is the language that web pages are written in. This language tells the browser how text should be displayed, font styles and colors, where graphics should be placed, etc. Once the file is saved as a webpage, it can then be uploaded to a web server and read by a browser.


Can you provide coding of net?

An example of HTML, probably the most common web coding langue, would be this: <html> //This defines that it is an HTML document <head> //This defines the head of the document <title>Example Webpage</title> //This defines the title of the webpage </head> //This closes the head of the document <body> //This defines the body of the document, the main content Hello world! <br> //This defines a page break <b>I am bold text</b> //This makes the text bold </body> //This closes the body </html> //This closes the document This is just an example, there is alot more that can be done with HTML. A good resource to learn HTML, as well as CSS and PHP (two more very common codes for the web) would be w3schools.com


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.


Is a webpage same as website?

These terms are not equivalent. A web page is a single HTML document, and a collection of these documents make up the contents of a website.


What are the things needed before creating an HTML document?

A simple text editor, like Notepad, a knowledge of HTML and an idea of what you actually want to create. Then you'll need a browser to view your webpage.