Use on the webTotal Use [ 3770 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6d8e359b910e28178575c6d190e280cf?family=Skylake" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/6d8e359b910e28178575c6d190e280cf?family=Skylake);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Skylake";
src: url("https://db.onlinewebfonts.com/t/6d8e359b910e28178575c6d190e280cf.eot");
src: url("https://db.onlinewebfonts.com/t/6d8e359b910e28178575c6d190e280cf.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6d8e359b910e28178575c6d190e280cf.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6d8e359b910e28178575c6d190e280cf.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6d8e359b910e28178575c6d190e280cf.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6d8e359b910e28178575c6d190e280cf.svg#Skylake")format("svg");
}
2CSS rules to specify fonts
font-family: "Skylake";