Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>CSS Properties Example</title> <style> body { background: darkslategrey; font-family: sans-serif; font-size: 1.3em; } section { padding: 20px; margin: 20px; background-color: cornsilk; border: 6px solid gold; } h1 { color: coral; } p { color: orange; } a:link, a:visited { color: darkorange; } a:hover { color: orangered; } a:active { background: orangered; color: white; } </style> <section> <h1>Basic CSS Properties Example</h1> <p>This is a basic example to demonstrate how CSS properties can be applied to a web page.</p> <p><a href="/css/properties/" target="_blank">CSS properties list →</a></p> </section>
Preview