i've just started in the world of html and css

how does my web site show up in searches "google"

I have an animated .gif moves very slow when page loads can that be sped up

any way to do things in colums EX:

1 2 3 4

5 6 7 8

any help with these cmds
thank you very much

Recommended Answers

All 4 Replies

how does my web site show up in searches "google"

I don't understand the question, sorry. If you're asking how to make sure your site is well-indexed by Google and ranks well in Search Results pages, that isn't an HTML coding question. Ask in the Site Management forums.

I have an animated .gif moves very slow when page loads can that be sped up

Not really. Most sites don't use animated GIFs anymore.

any way to do things in colums EX:

1 2 3 4

5 6 7 8

Research HTML tables.

Thanks for the help.

<table>
<thead>
<tr>
<th colspan="1">MY HEADER</th>
</tr>
</thead>

<tbody>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>

<tr>
<td>cell4</td>
<td>cell5</td>
<td>cell6</td>
</tr>

</tbody>

</table>

:o i hope i dont get kicked .. haha .. looks fine to me :D .. all the best with watever u r doing ..

later ..

thank you that really helps alot,

sorry my gratitude is late I was on vacation.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.