answersLogoWhite

0

What are the two page section in HTML?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

Head and body are the two sections of a HTML document with head containing information usually not seen by the user and everything in the body section being seen by the user.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the two page section in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many section of HTML document?

There are six headings that are available to be used in HTML. The range from H1 to H6. An H1 is more important then H6 heading. There should only be one H1 heading on any single HTML page.


What is the main part of an HTML page?

The main section of an HTML document is it's Body, defined by the and tags.


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>


Can you link an HTML page to your HTML page?

If it is someone else's page and they control the page, then only they can add a link on their page to your page. If you have two pages that you control, then you can link them to each other.


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.


Why you use body tag?

You need to use a <body> tag because it defines the main body section of an HTML document. Here are the minimum tags required to create a web page: <html> <head><title>My Page</title></head> <body> Hello World! </body> </html>


How do you create a static page in HTML?

A static page can be easily created in HTML page. It just needs the static tags defined in HTML.


What does HTML page mean?

A HTML page is a web page that is created using Hyper Text Markup Language and is saved with a .html extension


What is the difference between an HTML page and a dhtml page?

DHTML combines HTML, JavaScript, the HTML DOM, and CSS.


What are the last two tags of an HTML document?

The last two tags of an HTML document are the and tags. These tags mark the end of the body and the entire HTML document, respectively. Here's a breakdown of the structure: HTML Use code with caution. Learn more The tag indicates the end of the body content, which is where the visible elements of the web page are placed. It tells the browser that the structural elements of the page have been defined. The tag marks the end of the entire HTML document. It signals to the browser that it has reached the final element of the document and can start rendering the page. Together, these two tags enclose all the HTML content and provide a clear structure for the web page.


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.


Example of webpage in HTML?

If you want to see an example HTML code for a web page, you can simply right click on any web page and select "display source code". In Microsoft Internet Explorer, you can click View Source in the toolbar. A Quick Example: <html> <head> <title>THE TITLE OF THE PAGE</title> </head> <body> <p>Hello, This Is An Example Page</p> <br> <br> <p>This Is Another Paragraph</p> <p>And So Is This</p> </body> </html> As you can see, HTML pages work around tags. (E.g. <html> and </html>) ---------------------------------- Some basic tags: <html> & </html> -- start and end of the page <head> & </head> -- properties hidden to the user, such as page title <body> & </bdoy> -- the page's body, the actual website the user will see <title> & </title> -- page title, this has to be inside the <head> section <br> -- line break (like pressing enter) <p> & </p> -- a paragraph of text ---------------------------------- For examples with clear HTML code, see related links.