0
Please anyone can te me tag of html to display word in center?
6 odpowiedzi
+ 1
CSS can be used inside HTML, it's called inline CSS.
0
I dont know in html, but there is a css tag text-align which you can put text-align: center to center a text inside a container.
0
For example:
<p align="center">word</p>
or:
<p style="text-align="center";">word</p>
- this uses CSS.
0
thank you
0
but html and css is diffrent