html5 use of section tag in onepage template

Solutions on MaxInterview for html5 use of section tag in onepage template by the best coders in the world

showing results for - "html5 use of section tag in onepage template"
María
14 Jul 2019
1 <body>
2    <header>
3      <nav>
4        <ul>
5          <li><a href="#">link</a></li>
6          <li><a href="#">link</a></li>
7          <li><a href="#">link</a></li>
8        </ul>
9      </nav>
10      <h1>
11        Page Title
12      </h1>
13    </header>
14
15    <section>
16      <h2>
17        My Blog Posts
18      </h2>
19      <article>
20        <header>
21          <p>
22            Article Title
23          </p>
24        </header>
25        <p>
26          content
27        </p>
28      </article>
29      <article>
30        <header>
31          <p>
32            Article Title
33          </p>
34        </header>
35        <p>
36          content
37        </p>
38      </article>
39      <aside>
40        <p>
41          Author info
42        </p>
43      </aside>
44    </section>
45
46    <footer>
47      Copyright Info
48    </footer>
49  </body>