<!DOCTYPE html> <html> <head> <title>CSS3 Basic</title> <style> h1 { color: white; background: black; } </style> </head> <body> <h1>Hello World..!</h1> </body> </html>
h1 { color: white; background: black; }
Style sheet 적용 (style.css)
<!DOCTYPE html> <html> <head> <title>External Stylesheet Basic</title> <link rel="stylesheet" href="Style.css" /> </head> <body> <h1>Hello CSS .. !</h1> </body> </html>