Question #2

 avatar
unknown
html
2 years ago
1.4 kB
5
Indexable
<!DOCTYPE html>
<html>
  <body>
    <div>
      <h1>Welcome On Our Website!</h1>
      <p>Here is our logo and slogan.</p>
    </div>
    <div>
      <div>
        <h2>Choose Your Interest</h2>
      </div>
      <ul>
        <li>Menu 1</li>
        <li>Menu 2</li>
        <li>Menu 3</li>
      </ul>
    </div>
 
    <div>
      <div>
        <h1>Title of Article</h1>
        <h2>Subtitle of Article</h2>
      </div>
 
      <div>
        <h4>First Logical Part (e.g. "Theory")</h4>
        <p>Paragraph 1 in first section</p>
 
        <h5>Some Other Subheading in First Section</h5>
        <p>Paragraph 2 in first section</p>
      </div>
 
      <div>
        <h4>Second Logical Part (e.g. "Practice")</h4>
        <p>Paragraph 1 in second section</p>
        <p>Paragraph 2 in second section</p>
      </div>
 
      <div>
        <h5>Author Bio</h5>
        <p>Paragraph in Article's Footer</p>
      </div>
    </div>
 
    <div>
      <h2>Get To Know Us Better</h2>
 
      <div>
        <h4>Popular Posts</h4>
        <ul>
          ...
        </ul>
      </div>
 
      <div>
        <h4>Partners</h4>
        <ul>
          ...
        </ul>
      </div>
 
      <div>
        <h4>Testimonials</h4>
        <ul>
          ...
        </ul>
      </div>
    </div>
 
    <div>
      <ul>
        <li>Copyright</li>
        <li>Social Media Links</li>
      </ul>
    </div>
  </body>
</html>
Editor is loading...