answersLogoWhite

0

this is used to lower down the heartbeat, it is also helpful in reducing blood pressure.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How much air does the Taylor ice cream machine tr c712 at to the mix?

. 40


What is the spark plug gap in a TR Magna?

Use a .5 feeler gauge for the TR Spark Plug Gap.


What is the HTML code for preparing 2rows?

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


What is Theodore Roosevelt's favorite tv show?

TR never saw a TV they hadn't been invented in his time. It will take another 40+ years before there was TV. Electricity had just been invented when TR was president.


What serial number range of 30 40 krag rifles were used by the rough riders?

Incomplete records. Only 2 of the 10 troops had records of issue- and TR and his officers did not use the Krag carbine- but privately purchased Winchesters.


How do you add colums to HTML?

You create a table row using the TR tag... <table> <!-- ROW 1 --> <tr> <th>X</th> <th>Y</th> </tr> <!--ROW 2--> <tr> <td>Tom</td> <td>Sue</td> </tr> </table>


How you can create a rounded border on HTML Table?

You can use the code from below example: <TABLE BORDER=5 BORDERCOLOR=BLUE> <TR> <TD>Row1Column1</TD> <TD>Row1Column2</TD> </TR> <TR> <TD>Row2Column1</TD> <TD>Row2Column2</TD> </TR> </TABLE>


How can delete a table Row in HTML?

Each row in a table starts with the <TR> tag, and the cells are started with the <TD> tags which are inside the TR tags. To remove a specific row just highlight, and delete from <TR> to</TR> for example a table with two rows might look like this: <Table> <TR> <td>first row</td> </TR> <TR> <td>second row</td> </TR> </Table> To remove the first row delete <TR> <td>first row</td> </TR> You will be left with: <Table> <TR> <td>second row</td> </TR> </Table>


How do you convert cfm to tr?

Tr = cfm/400


How do you change the upercase to lower or lower to upercase in unix?

There are many different ways of doing this. If you are asking about the content of a file, use the 'tr' (translate) command. The actual parameters may vary from system to system, so use the 'man tr' command to be sure. For example, you may be able to change from lower to upper case by: tr '[a-z]' '[A-Z]' < infile > outfile


Where can you buy the Echostar TR-40 converter box at the advertised cost of 40?

Contrary to false information on the web, the EchoStar TR-40 is not the DTVPal nor is it available yet. It will become available in mid - late August 2008 or early September at the latest. It's cost will be $39.95 and it will be free with the government coupon. I was told by the manufacturer that it is to be available both at web stores and brick and mortar stores as well but no specifics were offered at this time July 28th 2008.


I want to center an unordered list but I want each list item to be left justified underneath each other?

I would recommend making an invisible table underneath, and using 3 cells to position it. example: <table border="0"> <tr> <td width="40%"></td> <td><ul><li></li></td> <td width="40%"></td> </tr> </table>