answersLogoWhite

0

HTML tables are created by the <table> command. Inside the table we can use tags like <li>, <ul>,<ol> etc.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Can you able to create table using css?

You can style a table in CSS, HTML is what you would use to create it though.


How do you create homepage or web page from event in table format using HTML?

Homepage can be created using HTML or various other languages. &lt;table&gt; can be used to create tabular format in HTML.


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.


How do you make HTML tables?

There are several tags used to create HTML tables. The minimum requirement are the &lt;table&gt; (start of the table), &lt;tr&gt; (row tag), and &lt;td&gt; (cell tag) tags. You use &lt;table&gt; and the beginning and &lt;/table&gt; at the end of your entire table. You use the &lt;tr&gt;&lt;td&gt;content&lt;/td&gt;&lt;td&gt;content&lt;/td&gt;&lt;/tr&gt; tags to identify the rows and cells within the rows.


Which type of software is easiest to use to create html?

You can create HTML in microsoft notepad, but a good option is Dreamweaver.


Why you want to use HTML?

To create a website


How do people use HTML?

People use it to create websites


What tools do I use to create a website?

You need some type of HTML editor to create a website. Once you have the HTML editor, you need to learn how to use HTML to see what kind of content that needs to be created.


What does a CSS table have to do with HTML?

HTML is a markup language used when one wants to create a website. Cascading style sheets or CSS is a style sheet language that one can use with HTML to create different kind of tables and pictures to the web page. Using CSS is easier than using HTML when creating tables for a website. It also makes updating the page easier.


What does the HTML tag TD create?

The &lt;td&gt;&lt;/td&gt; tag creates a table data cell. This is one of the boxes within an HTML table, and it intended to hold data (as opposed to a &lt;th&gt; which represents a table heading.) Table cells are always contained within a table row &lt;tr&gt; tag.


What is the HTML code to make link inside a table?

You have to use the anchor tag to make a link. The code will be &lt;a&gt;&lt;table&gt;Table-Stuff&lt;/table&gt;&lt;/a&gt;.


What is the HTML code for preparing 2rows?

If you want to create an HTML table with two rows, you use the &lt;table&gt; tag. Here is an example of two rows with a single column: &lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; If you want additional columns, add as many &lt;td&gt;&lt;/td&gt; tags between the &lt;tr&gt;&lt;/tr&gt; tags as you need.