http:// から始まる<a href="https://google.com">外部リンク</a>にアイコンをプラス。mailto を使った<a href="mailto:hello@example.com">メールリンク</a>にはメールアイコン。URLを指定することもできます。<a href="example.pdf">PDFファイル</a>など、拡張子で指定もできますよー!
a {
  padding-left: 20px;
  margin-left: 5px;
}
/* 外部リンク */
a[href^="http://"]{
  background: url(http://webcreatorbox.com/sample/images/link.svg) no-repeat;
}
/* メール */
a[href^="mailto:"]{
  background: url(http://webcreatorbox.com/sample/images/email.svg) no-repeat;
}
/* PDF */
a[href$=".pdf"]{
  background: url(http://webcreatorbox.com/sample/images/doc.svg) no-repeat;
} 
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.