color
by rootjang
HTML
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>color</title>
<style>
h1 {
color: rgb(0,200,0);
}
h2 {
color: blue;
}
.accent {
color: #ff0000;
}
</style>
</head>
<body>
<h1>세계 10대 슈퍼 푸드</h1>
<h2>마늘(Garlic)</h2><p>일해백리는 마늘의 별명이다.</p>
<p>마늘 특유의 아린 맛은 <span class="accent">알리신</span></p>
</body>
</html>