I don't know how to phrase this but I am building my own website and I want to have a link to my pictures but I want them to look like a table 2 by 2 with 4 pics in all. I know how to link to pics and etc. but I cant get them to come together like a box do you get what im trying to say?

There may be some help for you in one of these if you're using HTML:

http://www.web-source.net/html_codes_chart.htm
http://www.web-source.net/html_tips.htm
http://www.davesite.com/webstation/html/

And here's a place to try out what you've done to make sure you haven't forgotten something!
http://www.mountaindragon.com/html/try.htm

thank you but I have already learned from those sites its helping me but its not helping with this particular problem its kinda confusing. here's what I CAN do I have a link "Photos" click on that link and there is 1 pic there, but I want 4 boxed pics I hope that clears it up alittle. I know its tough to try and help b/c I cant even explain it right

You'll have to use a table.

The HTML would look something like this:

<Table width="75%" align="center" border="1">
<tr>
<td width="50%">
<IMG SRC="locationofimage1.jpg">
</td>
<td width="50%">
<IMG SRC="locationofimage2.jpg">
</td>
</tr><tr>
<td width="50%">
<IMG SRC="locationofimage3.jpg">
</td>
<td width="50%">
<IMG SRC="locationofimage4.jpg">
</td>
</tr>
</table>

Hope that helps!
Matt

Yes, I understand what you're trying to achieve. To create a table-like layout with 2 rows and 2 columns for your pictures, you can use HTML and CSS. Here's a step-by-step explanation of how you can accomplish this:

1. First, you need to have your images uploaded to a folder on your website or use image URLs if they are hosted elsewhere.

2. Start by creating the HTML structure for the table. Use the `<table>` tag to create the table, and `<tr>` and `<td>` tags to define rows and cells. For a 2x2 layout, you will need two rows and two cells in each row. Here's an example:

```html
<table>
<tr>
<td><img src="image1.jpg" alt="Image 1"></td>
<td><img src="image2.jpg" alt="Image 2"></td>
</tr>
<tr>
<td><img src="image3.jpg" alt="Image 3"></td>
<td><img src="image4.jpg" alt="Image 4"></td>
</tr>
</table>
```

3. Customize the table layout using CSS. You can add CSS styles to adjust the appearance of the table, such as adding borders, spacing, or alignment. Here's an example to get you started:

```html
<style>
table {
border-collapse: collapse;
}

td {
padding: 10px;
text-align: center;
border: 1px solid black;
}
</style>
```

This CSS code will collapse the table borders and add padding and a border around each cell.

4. Place the HTML code within the appropriate section of your website. You can either include it directly within your HTML file or insert it into the desired location using a content management system (CMS) or other website-building tools.

Make sure to replace the image file paths (`src="image1.jpg"`) in the HTML code with the actual paths or URLs of your images.

By following these steps, you should be able to create a table-like layout with four images displayed in a 2x2 grid on your website. Feel free to adjust the CSS styles based on your design preferences.