answersLogoWhite

0

How tables inserted into HTML tags?

Updated: 8/10/2023
User Avatar

Gadai1987

Lvl 1
13y ago

Best Answer

Basic table example:

<html>

<head>

<title>My Table Page</title>

</head>

<body>

<table border=1>

<th>Heading 1</th>

<th>Heading 2</th>

<th>Heading 3</th>

<tr>

<td>Row 1, Column 1</td>

<td>Row 1, Column 2</td>

<td>Row 1, Column 3</td>

</tr>

<tr>

<td>Row 2, Column 1</td>

<td>Row 2, Column 2</td>

<td>Row 2, Column 3</td>

</tr>

<tr>

<td>Row 3, Column 1</td>

<td>Row 3, Column 2</td>

<td>Row 3, Column 3</td>

</tr>

</table>

</body>

</html>

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

Tables are marked by the tags <TABLE>and</TABLE>.Inside these tags,you use table row tags,<TR> and </TR>,to define rows of data.Within each row ,cells are defined by table data tags <TD> and </TD>

e.g:-

<HTML>

<HEAD>

<TITLE>Title name</TITLE>

</HEAD>

<BODY>

<TABLE BORDER="1">

<TR>

<TD>Cell 1</TD>

<TD>Cell 2</TD>

<TR>

<TD>Row 2</TD>

<TD>Row 2,</TD>

</TR>

</TABLE>

</BODY>

</HTML>

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How tables inserted into HTML tags?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

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.


What are built-in tags Like for HTML and CSS?

No tags are used in CSS. Tags are actually what CSS primarily styles.


What is the connection of a notepad with HTML tags?

You can use Notepad to write HTML pages, and HTML consists of tags. So you would be writing a lot of tags when using Notepad to create a HTML page.


How do tags appear HTML sources?

HTML source code shows the tags that are formed. It is because it is a markup language and all the coding is in tags.


Which tags are allowed in the HTML head portion of the HTML document?

&lt;TITLE&gt; &lt;/TITLE&gt;, Text formatting tags

Related questions

What tags can you use to define page layout?

HTML Layouts - Using ElementsHTML Layouts - Using Tables


How do you create and use an HTML table?

HTML tables are created by the &lt;table&gt; command. Inside the table we can use tags like &lt;li&gt;, &lt;ul&gt;,&lt;ol&gt; etc.


What are HTML tages?

HTML tags are the predefined tags that are embedded within the "&lt;&gt;". Each HTML tags has the following attributes and operations.


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.


What are HTML tags what are the required HTML tags in creating webpages describe what these tags do?

HTML tags are like containers for content. They tell how the content should be displayed. Tags in HTML should be enclosed with &lt; and &gt;. Most tags consist of an opening tab ie &lt;HTML&gt; and a closing tag ie &lt;/HTML&gt;. The proper action is then taken concerning the content in between them. There are many tags that can be used, however very few are required. It is recommended that all HTML pages begin with the &lt;HTML&gt; tag, and end with the corresponding closing tag &lt;/HTML&gt;. For example: &lt;HTML&gt; &lt;head&gt; info here is for the browser, not displayed to the user &lt;/head&gt; &lt;body&gt; this is where the page content goes &lt;/body&gt; &lt;/HTML&gt; I've found w3schools to be very helpful in learning HTML. A few other useful tags include: &lt;form&gt;&lt;/form&gt; (for making forms), &lt;table&gt;&lt;/table&gt; (for tables, with &lt;tr&gt; and &lt;td&gt; to make rows and columns respectively), &lt;h1&gt;&lt;/h1&gt; (the largest header), and &lt;p&gt;&lt;/p&gt; (a paragraph.)


What are built-in tags Like for HTML and CSS?

No tags are used in CSS. Tags are actually what CSS primarily styles.


What is the connection of a notepad with HTML tags?

You can use Notepad to write HTML pages, and HTML consists of tags. So you would be writing a lot of tags when using Notepad to create a HTML page.


What does HTML use tags for?

HTML cannot work without it's tags. It uses tags for it's scripting work.


How do you add HTML to your website?

HTML can be added by adding tags to the code. HTML tags are the ones that cause the view to modify.


What is an HTML webpage?

An HTML webpage is a collection of HTML tags. The tags are arranged in a proper way to create a web page.


HTML contains 2 tags what are they?

HTML contains many more than 2 tags. Most tags come in a set of 1 opening and 1 closing tag. For example, &lt;html&gt; and &lt;/html&gt;.


What are the tags in HTML surronded by?

HTML tags are put between &lt;&gt;. Example: &lt;FONT size="2"&gt;