How to make table in yahoo mail

To create a table in Yahoo Mail, you can follow these steps:

Method 1: Using the Table Tool

  1. Compose a new email or reply to an existing one.
  2. Place your cursor where you want to insert the table.
  3. Click on the "Insert" menu at the top of the compose window.
  4. Select "Table" from the drop-down menu.
  5. A table editor will appear. You can customize the table settings, such as the number of rows and columns, table border, and cell padding.
  6. Click "Insert" to add the table to your email.

Method 2: Using HTML Code

  1. Compose a new email or reply to an existing one.
  2. Place your cursor where you want to insert the table.
  3. Type the following HTML code to create a basic table: <table border="1" cellpadding="5" cellspacing="0">
  4. Add the table rows and columns using the <tr> and <td> tags. For example: <tr><td>Cell 1</td><td>Cell 2</td></tr>
  5. Close the table tag with </table>
  6. Send the email.

Here's an example of what the HTML code might look like:

<table border="1" cellpadding="5" cellspacing="0">
  <tr>
    <td>Cell 1</td>
    <td>Cell 2</td>
  </tr>
  <tr>
    <td>Cell 3</td>
    <td>Cell 4</td>
  </tr>
</table>

Tips: