Experimenting w/HTML & CSS

HTML
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="styles.css"> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>
CSS
body { background-color: #ffff6b; } h1 { color: #000; text-align: center; text-decoration: underline; } p { color: #a50063; text-align: center; }
JAVASCRIPT
Expand for more options Login