<html lang="ko">
<head>
<meta charset="UTF-8">
<title>CSS Intro</title>
<style>
body {
background-color: silver;
}
h1 {
font-family: "Times New Roman", Georgia, Serif;
text-align: center;
}
p {
color: #663399;
text-decoration:underline;
font-weight: bold;
}
</style>
</head>
<body>
<h1>CSS(Cascading Style Sheets)</h1>
<p>CSS를 이용한 간단한 예제입니다.</p>
</body>
</html>