1

Please Give me details what is difference between bellow code

         <section >
          Some text goes here...
         </section>

and same write like inside div

          <div class="section">
                 Some text goes here...
        </div>

2 Answers2

0

<section> marks up a section, <div> marks up a generic block with no associated semantics.

See it here on SO

Community
  • 1
  • 1
Vincent G
  • 8,547
  • 1
  • 18
  • 36
0

this is possibly a duplicate of What is the difference between <section> and <div>?

but to answer your question section tag is a html5 semantic tag that represents a generic section of a document or application

Community
  • 1
  • 1