textdecoration

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);
    }
    a {
      text-decoration: none;
    }
    .edited {
      text-decoration: line-through;
    }
  </style>
</head>
<body>
  <h1>세계 10대 슈퍼 푸드</h1>
  <h2>토마토(tomato)</h2>
  <p>[<a href="https;?/www.fitbug.com/g/Superfoods-tomatoes" target="_blank">외부링크</a>]</p>
  <p>토마토는 비타민 A,C가 풍부한 <span class=" edited">과일이다.</span>채소이다.</p>
</body>
</html>