<html lang="ko">
<head>
<meta charset="UTF-8">
<title>CSS3 Linear Gradients</title>
<style>
#grad {
height: 200px;
background: green;
background: linear-gradient(right, green, yellow);
background: linear-gradient(right, green, yellow);
background: linear-gradient(right, green, yellow);
background: linear-gradient(to left, green, yellow);
}
</style>
</head>
<body>
<h1>선형 그래디언트 - 오른쪽에서 왼쪽으로</h1>
<div id="grad"></div>
</body>
</html>