Page is a not externally linkable
penders - 7:58 am on Oct 6, 2011 (gmt 0)
I guess i should do the same with bold underline tags as well....
<p><center> <b> <u>more videos</center></u></b></p>
This looks a lot like a heading, so perhaps it should be just that, something like:
<h3>More Videos</h3>
You can style this is your CSS however you like:
h3 {
font-weight: bold; /* Although headings are usually bold by default */
text-decoration: underline; /* But do you really want it underlined? */
text-align: center;
background-color: red;
color: white;
}