answersLogoWhite

0

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

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

Is a browser's main function to create webpages using HTML?

No, a browsers main function is to read HTML files and render them on the screen. If you want to create pages with HTML, you'll need an editor, IDE, or WYSIWYG.


What is the different parts of HTML?

A HTML page can be divided into various sections. The head part of the page and the body part are the main one.


What is the difference of HTML to the other types of markup language?

The main difference is that HTML is used to create dynamic web pages. Other than this HTML cannot do much.


I have a HTML website I want to use a php script I have but the main php file has the info in it and I want it to be on the HTML site how can I embed or use the php code without using frames?

change the extention of the .HTML file to .php and then open the file that was previously HTML and put &lt;?php include ("path/to/second/php/file.php"); ?&gt; so for example if i have page1.HTML and page2.php i rename page1.HTML to page1.php and then put &lt;?php include ("page2.php"); ?&gt; where i want page2 to appear. Note: Any HTML file can be renamed to have a .php extention even if it doesnt contain any PHP.


Why XML has replaced HTML as the main mark up language to create Webpages?

because in XML there is no predefined tags


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.


What are the parts of a file?

A file typically consists of three main parts: the header, the body, and the footer. The header contains metadata, such as the file type, size, and creation date. The body holds the main content or data of the file, while the footer may contain additional metadata or control information, like checksums for data integrity. Together, these components ensure that the file is properly structured and usable by software.


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.


What are the three plases that a JavaScript file can be used?

A JavaScript file can be used in three main places: inline within HTML using the &lt;script&gt; tag directly within the HTML document, in the &lt;head&gt; or &lt;body&gt; sections of the HTML file, and as an external file linked via the &lt;script src=&quot;filename.js&quot;&gt;&lt;/script&gt; tag. Inline scripts are useful for small snippets, while external files promote better organization and reusability of code across multiple pages. Additionally, placing scripts at the end of the body can improve page load performance.


Why you use body tag?

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


What are the types of linking in HTML?

There are various kinds of linking in HTML. You can link to other webpages, which is the main kind of link. You can link to other parts of the same page. You can link to e-mail addresses. You can link in other files that are used for HTML pages like script files and style sheets.


Enumerate the basic HTML structure's and describe each briefly?

The page starts with the HTML start tag Followed by the tags, and goes here Followed by the Tag. The followin HTML will be the content of you web page Followed by closing the Tag, and tags. Here is a sample of a Basic HTML document: the name of the page This is a basic HTML structure. This is where the content goes that will display on your page.