How to make the links (or plain text) in the table with tabs located in several bars? (I personally need 3)
this can be done using a table
but it's better to do this with divs, so it's less HTML code that distracts from the content.
insert the following into the container:
<div id="my_col"> Here is the text of the column </div>
we paste as many times as necessary columns.
insert the cccode for the column:
<style>
#my_col {
float: left;
width: 150px;
}
</style>
red is the width of the column