No, <table> tag is made for rendering the data in tabular format not to design the layout of the webpage, however this is massively used for the designer because its easy to use.
To design the layout we should use <div> and/or <span> along with css classes.
What is the code to write bulleted and numbered list in HTML.
Posted by: Poster
To write bulleted list in the HTML, write following code:
<ul>
<li>fdasfadsf asdf</li>
<li>sfdafasdf</li>
<li>fdsafasfsa</li>
<li>fdsafsda</li>
</ul>
To write numbered list in the HTML, write following code:
<ol>
<li>fdasfadsf asdf</li>
<li>sfdafasdf</li>
<li>fdsafasfsa</li>
<li>fdsafsda</li>
</ol>
Notice the difference is only <ul> and <ol>. In the bulleted list, we need to use <ul> tag and in the numbered list we need to use <ol> tag.