× × ×
Learn next: Introduction
Use <article>
element for creating inner pages that contain
mostly textual content.
Here is an example of one article inner page:
<article>
<h3>Title</h3>
<p>Paragraph text</p>
<ul>
<li>list item #1</li>
<li>list item #2</li>
<li>list item #3</li>
</ul>
</article>
Article element is predefined element meaning layout options are already set. This enables you even quicker development.
Use article element:
You may use images within article element or any other html content.
Learn next: Introduction