HTML Element Style How to - Put h1 header inside a div








Question

We would like to know how to put h1 header inside a div.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#title {<!--from  w  w  w  .  java  2s  .co m-->
  font-size: 87px;
  text-indent: 5px;
}

#header {
  background-color: black;
  color: red;
  border-style: solid;
  border-width: 1px;
  border-color: white;
}
</style>
</head>
<body>
  <div id="container">
    <div id="header">
      <h1 id="title">Title</h1>
    </div>
  </div>
</body>
</html>

The code above is rendered as follows: