Font Awesome

by tea4two

HTML

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css">
<p><a href="#" class="link"><i class="fas fa-subway"></i>電車でお越しの方</a></p>

SCSS

.link {
  text-decoration: none;
  font-size: 2rem;
  color: tomato;
  
  &:hover {
    color: gold;
  }
  
  i {
    margin-right: 5px;
  }
}