Search

0102_tag2

대분류
CSS1
소분류
CSS1
개념
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> h1 { color: red; } p { color: #1327e2; } </style> </head> <body> <h1>This is a headline.</h1> <p>This is a paragraph.</p> </body> </html>
HTML
복사