answersLogoWhite

0

TD Banknorth Garden

100 Legends Way

Boston, MA 02114

User Avatar

Wiki User

17y ago

Still curious? Ask our experts.

Chat with our AI personalities

LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
BlakeBlake
As your older brother, I've been where you are—maybe not exactly, but close enough.
Chat with Blake

Add your answer:

Earn +20 pts
Q: What is the address of TD Banknorth Garden?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you create a student table with shift columnstudent namecoursemobile number in HTML?

Here is the HTML code to create a table to include your content. Repeat the <tr><td>*<.td></tr> section as many times as you like. <table> <th> <td>Shift</td> <td>Student Name</td> <td>Course</td> <td>Mobile Number</td> </th> <tr> <td>*</td> <td>*</td> <td>*</td> <td>*</td> </tr> </table>


Can anyone get me an HTML table layout code?

This is just a smiple example of a table. <table border=3><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td><td>5</td></tr></table>


What is the vertical rule for HTML?

There is a horizontal rule, using the <HR> tag, but there is no corresponding vertical rule tag. What you can do is create a table and set it to show vertical lines only as a border, using the rules attribute of the Table tag, and setting its value to cols. <TABLE border=5 bordercolor=Black Rules=Cols> <CAPTION>Rules=Cols</CAPTION> <TR><TD>January</TD><TD>January</TD><TD>January</TD></TR> <TR><TD>February</TD><TD>February</TD><TD>February</TD></TR> <TR><TD>March</TD><TD>March</TD><TD>March</TD></TR> </TABLE> You can also use the frame attribute in a similar way with its value set to LHS or RHS. <TABLE border=5 bordercolor=Black Frame=RHS> <CAPTION>Frame=RHS</CAPTION> <TR><TD>January</TD><TD>January</TD><TD>January</TD></TR> <TR><TD>February</TD><TD>February</TD><TD>February</TD></TR> <TR><TD>March</TD><TD>March</TD><TD>March</TD></TR> </TABLE> Both of the above examples include borders, but they can be turned on or off, as you require, by setting the border to 0.


How do you create biodata in table format using HTML?

<html> <head> <title> BIO-DATA </title> <body> <table border="1" width="600" align="center" bgcolor="yellow"> <caption align="center">BIO-DATA</caption> <tr> <td colspan="2" align="center"><img src="Photo-2128.jpg" height="350" width="300"> </td> </tr> </table> <table border="1" width="600" align="center" bgcolor="green"> <tr> <font face="verdana" color="red"> <td>NAME:</td> <td><font color="white">Ashis Kumar Sharma</font></td> </font> </tr> <tr> <font face="verdana"> <td colspan="2" align="center" height="40" bgcolor="yellow"><font color="green"><b>ADDRESS</b></font></td> </font> </tr> <tr> <font face="verdana"> <td>CITY:</td> <td><font color="white">Chakradharpur</font></td> </font> </tr> <tr>k <font face="verdana"> <td>STATE:</td> <td><font color="white">Jharkhand</font></td> </font> </tr> <tr> <font face="verdana"> <td>PIN-CODE</td> <td><font color="white">833102</font></td> </font> </tr> <tr> <font face="verdana"> <td>EMAIL:</td> <td><font color="white">xxxxxxx@gmail.com</font></td> </font> </tr> <tr> <font face="verdana"> <td>PHONE:</td> <td><font color="white">95465768878</font></td> </font> </tr> <tr> <font face="verdana"> <td>MOBILE NO.:</td> <td><font color="white">9876543210</font></td> </font> </tr> <tr> <font face="verdana"> <td>D.O.B:</td> <td><font color="white">18/6/1991</font></td> </font> </tr> <tr> <font face="verdana"> <td>GENDER:</td> <td><font color="white">Male</font></td> </font> </tr> <tr> <font face="verdana"> <td>COLLEGE:</td> k<td><font color="white">Kiit University</font></td> </font> </tr> <tr> <font face="verdana"> <td>DEPARTMENT:</td> <td><font color="white">MCA</font></td> </font> </tr> <tr> <font face="verdana"> <td colspan="2" align="center" height="40" bgcolor="yellow"><font color="green"><b>EDUCATIONAL QUALIFICATION</b></font></td> </font> </tr> <tr> <font face="verdana"> <td>10th</td> <td><font color="white">58.2</font></td> </font> </tr> <tr> <font face="verdana"> <td>12th</td> <td><font color="white">60</font></td> </font> </tr> <tr> <font face="verdana"> <td>B.Sc.(C.A)</td> <td><font color="white">79.2</font></td> </font> </tr> <tr> <font face="verdana"> <td>MCA</td> <td><font color="white">7.85 CGPA</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>EXTRA ACTIVITY:</td> <td><font color="white">Cricket,Art</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>PROFESSIONAL QUALIFICATION:</td> <td><font color="white">C,C++,Data Structure,Html,Php</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>KNOWN LANGUAGE:</td> <td><font color="white">English,Hindi</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>HOBBY:</td> <td><font color="white">Listening Music,Playing Cricket</font></td> </font> </tr> </table> </body> </html>


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>