How to use HTML5 section element for thematic (semantic) grouping of content

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>

<section>
  <h1>HTML</h1>
  <p>Hypertext Markup Language is the standard markup 
  language for creating web pages and web applications.</p>
</section>

<section>
  <h1>CSS</h1>
  <p>Cascading Style Sheets is a style sheet language 
  used for describing the presentation of a document 
  written in a markup language like HTML.</p>
</section>

</body>
</html>

 



answered Jan 8, 2019 by avibootz

Related questions

1 answer 419 views
1 answer 353 views
2 answers 386 views
386 views asked May 27, 2016 by avibootz
1 answer 258 views
258 views asked Jun 28, 2015 by avibootz
...