/* Font face excample */
/***
@font-face {
  font-family: 'MyWebFont';
  src: url('webfont-regular.eot');
  src: url('webfont-regular.eot?#iefix') format('embedded-opentype'),
       url('webfont-regular.woff2') format('woff2'),
       url('webfont-regular.woff') format('woff'),
       url('webfont-regular.ttf')  format('truetype'),
       url('webfont-regular.svg#svgFontName') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyWebFont';
  src: url('webfont-bold.eot');
  src: url('webfont-bold.eot?#iefix') format('embedded-opentype'),
       url('webfont-bold.woff2') format('woff2'),
       url('webfont-bold.woff') format('woff'),
       url('webfont-bold.ttf')  format('truetype'),
       url('webfont-bold.svg#svgFontName') format('svg');
  font-weight: 700;
  font-style: normal;
}
***/
