I need help with html?

Old styled way:

<center><img src="image.jpg" alt="image"></center>

The new and better way is to use CSS:

This goes to the <head> tags:
<style type="text/css">
img {align:center
}
</style>

And then you just put the image tags normally.
 
Old styled way:

<center><img src="image.jpg" alt="image"></center>

The new and better way is to use CSS:

This goes to the <head> tags:
<style type="text/css">
img {align:center
}
</style>

And then you just put the image tags normally.
 
Back
Top