HTML/CSS/Styles Tags/style

Материал из Web эксперт
Перейти к: навигация, поиск

"style" Example

   <source lang="html4strict">
   

<html> <title>style element example</title> <head> <style>body { background-color: black; color: white; }</style> </head> <body>The body cotains a black background and white letters.</body> </html>


     </source>