AmberCutie's Forum
An adult community for cam models and members to discuss all the things!

html help please

  • ** WARNING - ACF CONTAINS ADULT CONTENT **
    Only persons aged 18 or over may read or post to the forums, without regard to whether an adult actually owns the registration or parental/guardian permission. AmberCutie's Forum (ACF) is for use by adults only and contains adult content. By continuing to use this site you are confirming that you are at least 18 years of age.
Status
Not open for further replies.

MiaFoxUK

Inactive Cam Model
Im learning (slowly haha)

Can someone point me in the direction for some info on how to make a table of images that are clickable links?

I know how to make an individual image a clickable link but need some help building the table part and knowing where each bit of code goes :p

xx
 
So, to open a table, use <table> then <tr> for a new row, and <td> for a cell in that row. Basically:

<table>
<tr>
<td><img src="your image url"></td>
<td><img src="your image url"></td>
</tr>
<tr>
<td><img src="your image url"></td>
<td><img src="your image url"></td>
</tr>
</table>

would give you a table that is two rows tall, two cells wide.

Here's a link for more expanded info: https://www.w3schools.com/html/html_tables.asp
 
Status
Not open for further replies.