HTML DOM Section Object


The HTML DOM Section Object represent the <section> element of an HTML document.

Let us create section object

Syntax

Following is the syntax −

document.createElement(“SECTION”);

Example

Let us see an example of HTML DOM section object −

 Live Demo

<!DOCTYPE html>
<html>
<head>
<style>
   body{
      text-align:center;
      background-color:#fff;
      color:#0197F6;
   }
   h1{
      color:#23CE6B;
   }
   .drop-down{
      width:35%;
      border:2px solid #fff;
      font-weight:bold;
      padding:8px;
   }
   .btn{
      background-color:#fff;
      border:1.5px dashed #0197F6;
      height:2rem;
      border-radius:2px;
      width:60%;
      margin:2rem auto;
      display:block;
      color:#0197F6;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM Section Object Demo</h1>
<button onclick="createSection()" class="btn">Create a section object</button>
<script>
   function createSection() {
      var sectionElement = document.createElement("SECTION");
      sectionElement.innerHTML="

      Hi! I'm a <section> element in HTML";

      document.body.appendChild(sectionElement);

   } </script> </body> </html>

Output

This will produce the following output −


Updated on: 30-Jul-2019

147 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements