Skip to main content

Grouping in HTML - DIV & SPAN

Grouping in HTML
Sometimes there is need to group certain elements of a html document together into a logical block or segment.
Generally used for CSS designing.

For grouping html elements we generally uses

  • <div>
  • and <span> tags

both the tags are used for grouping but they varies from each other as <div> creates a logical block whereas <span> is used for inline reference to a certain content in the document.


<DIV>

It can be referenced using class or id attributes.

ex:  <div class="abc">
                    <p> ..... </p>
       </div>
       
       Referencing :
       .abc
         {
             ----------
         }

Comments

Popular posts from this blog

Servlet and JSP

Dynamic websites using Java Framework  Earlier most of the dynamic websites were created using java framework like Servlet JSP But these methods of creating dynamic websites are quite outdated now. Servlet It is a java framework used to create dynamic websites. There could be many servlets handling different aspects of the websites. All these servlets are hosted on a servlet container. JSP - Java Server Page It is a java framework used to create dynamic websites. It is similar to servlet but there exists some differences like Servlet has html code into java code whereas JSP has java code into html

Meta - tag

<meta> The meta tag or metadata tag is a self-closing tag which provides data about data. It provides information to browser about the web-page like language of the page author of the page last modified time, etc Important attributes :- charset content name http-equiv ex : <meta name="author" content="avas27">