answersLogoWhite

0

What tag defines what HTML document to put in each frame?

Updated: 8/16/2019
User Avatar

Wiki User

14y ago

Best Answer

By using frames, you can display more than one HTML document in the same browser window. The frameset tag defines how to divide the window into frames. Each frameset defines a set of rows or columns to the size, or percentage of the page the frame is. The tag is used within the Frameset tag to assign (define) the source of the HTML to display in each frame. for example

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What tag defines what HTML document to put in each frame?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How HTML works in webpage designing?

HTML works on the tag based technology. Each tag defines a function which it executes when run.


What are the object in dom?

Introduction. The Document Object Model (DOM) is a programming API for HTML and XML documents. It defines the logical structure of documents and the way a document is accessed and manipulated.


What is a static HTML file?

Static HTML vs Dynamic HTML. Static HTML is a web document(s) that show the same information for all users. It can be updated from time to time but shows the same information to each and every user. Dynamic HTML is a web document that shows different information per user due to factors such as a search. This web page will vary depending on information passed to it.


What is important of ul in HTML?

and create an unordered list. This means that the items are in no particular order. The tags also work with tags but it created a bullet point instead of an automatic number. defines the list - whilst defines each separate item in the list.


Why is HTML necessary?

HTML is the basic building blocks for web pages on the Internet. It is a markup language which allows you to markup the different components of a document which tells the browser what each of those elements means and what they should do with that content. HTML stands for HyperText Markup Language.


What is a frameset tag and its attributes?

The frameset tag is used to define the layout of a web page which uses frames. It defines how many frames, their sizes, and what pages get loaded in each one. A web page which uses frames actually calls for separate web pages to load in each frame. The attributes and further description are all listed here: http://devedge-temp.mozilla.org/library/manuals/1998/htmlguide/tags11.html#1294825


What are HTML tages?

HTML tags are the predefined tags that are embedded within the "<>". Each HTML tags has the following attributes and operations.


What is java DTD?

A DTD is the original type of XML schema. XML Schemas are used to formally describes the contents of an XML document. An XML schema describes the shape of the XML document, defining the data, sub elements or attributes it can contain, along with the number of times given entities can occur. A document type definition (DTD) is a set of markup declarations that define a document type for an SGML-family markup language (SGML, XML, HTML). A Document Type Definition (DTD) defines the legal building blocks of an XML document. It defines the document structure with a list of legal elements and attributes.


How applie frame tag in HTML?

The following code will create a page with two frames, one above the other, equally sized.. You can enter the filenames of the pages you want for each frame and the names, after the frame src which is the frame source. Top and Bottom are used here to identify the frames. <FRAMESET rows="50%,50%" > <frame src="Your web page" name="Top"> <frame src="Your other web page" name = "Bottom"> </frameset> In this one, the frames are beside each other and they are named left and right. <FRAMESET cols="50%,50%" > <frame src="Your web page" name="Left"> <frame src="Your other web page" name = "Right"> </frameset>


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.


How are Web Pages Created?

HTML is the acronym for Hypertext Markup Language. It is a markup language used to create web documents stored on a server and easily found by using a web browser. HTML describes the general content of a web page. HTML is a way to present document text on the World Wide Web. This permits the portability of web pages because the World Wide Web is accessible to various computer platforms. HTML establishes web page styles for headings, paragraphs, lists, and tables. It also formulates character styles such as boldface. A HTML web page labels different elements of the page with tags that identify heading or list items. Special tags surround the words and paragraphs of a document. Pages written in HTML are plain text files (ASCII). An editor that supports text reads HTML pages. These pages do not contain platform or program specific information. HTML files consist of the page text and the tags that indicate page elements, structure, formatting, and hypertext links to other pages or media. A HTML web page contains the document content and tags. Document content presents information in the form of text and graphics to the web page user. HTML applies a tag to document content using the syntax: Tag Name Properties -- Document Content -- Closing Tag Name Tags are identified by the brackets (<>) that enclose the tag name. The opening tag is the first tag that tells the browser to turn on the feature and apply it to the document content that follows. The browser applies the feature until it reaches the closing tag and then turns off the feature. Some tags can include properties, or additional information used to define the tag’s appearance. Every HTML web page begins with the HTML tag to indicate that page content is in the HTML language. The HEAD tag announces the beginning of the web page content. The remainder of the HTML page is enclosed within a BODY tag. This includes the entire text and other content (links, pictures, tables, etc). Each HTML page also requires a title to indicate what the page describes.


How HTML is interpreted?

HTML Code is interpreted differently by browsers. Each tag has a certain function attached to it.