There are 4 columns of links in the footer, each taking up 25% of the width. All columns share the same CSS style since they belong to the same class. The first column appears as follows:
Title of Column 1
link11
link12
link13
To achieve this layout, I am considering using either <ul><li>
tags or <p>
tags. Which approach is preferable, utilizing <ul>, <li>
, or <p>
?
Additional question:
P.S. After reviewing the link http://www.w3schools.com/html5/tag_nav.asp, which employs <!DOCTYPE html>
(indicating HTML5), it was noticed that for organizing the column of links (as in my inquiry), they only use <br/>
instead of <p>
or <li>
(refer to the page source of the left column).
Is it more effective to use <br/>
over <ul><li>
or <p>
?