Can and how? Html codes? Help!!!!?

  • Thread starter Thread starter animelover098765
  • Start date Start date
A

animelover098765

Guest
Ok, I know most of the codes. Few questions. Can you do a double html code.
Ex. <center></c><b></b>
Can you use both on one word? How? How many can you use?

Next question. On mweor.com- how can you change the background color on the page? I have tried but none of my codes work.

I know most codes but these are my major questions. Need help please!!!!
 
CORRECT USAGE:

<center><b>Hello!</b></center>
<b><center>Hello!</center></b>

INCORRECT USAGE:

<center>hello<b></center></b>
<center>Hello</center><b></b>
<b><center>Hello!</b></center>
 
Not too sure what you're getting at, how ever you can use as many tags on a web page as you want.
EDIT:
you can use multiple tags on one word ex:

<u><b>hello</b></u> -- this would be underlined, and bold.

PS:
Use CSS for background:

<style type="text/css">
body{
background-image: url(IMG_URL);
}
</style>

&& Don't forget to close your html tags, you don't want them to effect the rest of the webpage! ^^ =)
 
Back
Top