answersLogoWhite

0

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

15y ago

What else can I help you with?

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;