HTML – Step 3 – Structuring Text

Now you will apply some basic HTML tags in order to structure the content on your page.

  • Heading: <h1>Heading Text</h1>
  • Paragraph: <p>Plain text</p>
  • Bold: <b>Bold Text</b>
  • Unordered list: <ul></ul<
  • List items: <li></li>

Sample Code for List:

<ul>

   <li>Name, Surname,</li>

   <li>Student ID: 123456789</li>

   <li>…</li>

</ul>