HTML CSS examples for CSS:Introduction
The browser styles (user agent styles) are the default styles a browser applies to an element if no other style has been specified.
The following code shows a simple HTML document that contains no styles.
<!DOCTYPE HTML> <html> <head> <title>Example</title> </head> <body> <a href="http://java2s.com">Website</a> <p>I like <span>CSS</span> and HTML.</p> <a href="http://w3c.org">Visit the W3C website</a> </body> </html><!--from ww w .jav a2 s .c om-->