Webmaster Forums - Website and SEO Help

Web Development and Design => Website Design and HTML => Topic started by: prodiggau1 on January 09, 2017, 05:32:09 AM

Title: What is the difference between <div> and <frame>?
Post by: prodiggau1 on January 09, 2017, 05:32:09 AM
What is the difference between <div> and <frame>?
Title: Re: What is the difference between <div> and <frame>?
Post by: SunFineHanger on January 10, 2017, 03:00:24 AM
A <div> is a generic container element for grouping and styling, whereas a <frame> creates divisions within a web page and should be used within the <frameset> tag.
Title: Re: What is the difference between <div> and <frame>?
Post by: everydaymug on January 10, 2017, 04:57:56 AM
The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS.
The <frame> tag is not supported in HTML5. The <frame> tag defines one particular window (frame) within a <frameset>. Each <frame> in a <frameset> can have different attributes, such as border, scrolling, the ability to resize, etc.
Title: Re: What is the difference between <div> and <frame>?
Post by: cinemagicllc on March 01, 2017, 12:10:50 AM
<Div> is a generic element for grouping and styling.
<Frame> creates divisions within a web page and should be used within the <frameset> tag.
Title: Re: What is the difference between <div> and <frame>?
Post by: michral86 on April 28, 2017, 07:19:51 AM
The <div> tag defines a division or a section in an HTML document.
It is used for grouping the Content as a BLOCKS.
For an example:
<div id="myDiv" name="myDiv" title="Example Div Element">
<h5>Subtitle</h5>
<p>This paragraph would be your content paragraph...</p> <p>Here's another content article right here.</p>
</div>

The <frame> tag is not supported in HTML5.
The <frame> tag defines one particular window (frame) within a <frameset>.
For an example:
<html>
<body>
<frameset cols="30%,*"> <frame src="abc.html"> <frame src="def.html"> </frameset>
</body>
</html>
Title: Re: What is the difference between <div> and <frame>?
Post by: generalboxel on June 07, 2017, 03:13:11 PM
frame is an Old and obsolete html tag. DIV is basically relative and moving while crawling but frames are fixed. using frame is not good for seo now.
Title: Re: What is the difference between <div> and <frame>?
Post by: kentowin on February 19, 2018, 04:06:23 AM
A <div> is a generic container element for grouping and styling.

whereas a <frame> creates divisions within a web page and should be used within the <frameset> tag.