+ 1
How can I use css on html to format the front, page and size without using a separate css sheet?
I want to write design a Web page using html, but don't know how to format the text and layout of the page using css. Your direction and suggestion would be highly appreciated...
4 Réponses
+ 8
<style>
..
...your css style...
..
</style>
+ 1
inside of Head TAG in your html doc, put
<style>
ALL CSS rules right here
</style>
0
Thank you very much for your reply.. 👍👍👍