When I am trying to center this div in html:
    <div class="content">
        <h1 class="about-us-heading">About</h1>
    <br>
    <p class="about-us">About Text Here</p>
</div>
I am using the following code in my css file:
.content {
  margin-left: 30px;
  width: 800px;
  text-align: center;
}
Please could someone point out what I am doing wrong here?
 
    