a {
    text-decoration: none;
  }


 {
    color: black; /* 預設顏色為綠色 */
    text-decoration: none; /* 去掉底線 */
  }
  /* 針對滑鼠移入時的狀態 */
  a:hover {
    color: red; /* 滑鼠移入時變橘色 */
    text-decoration: underline; /* 或加上底線 */
  }
  /* 針對已拜訪過的連結 */
  a:visited {
    color: bule; /* 已拜訪過的顏色 */
  }