Use on the webTotal Use [ 4372 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1b0449788f78191daa8cc6364c6c0686?family=Preston+Blair+Skip" 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/1b0449788f78191daa8cc6364c6c0686?family=Preston+Blair+Skip);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Preston Blair Skip";
src: url("https://db.onlinewebfonts.com/t/1b0449788f78191daa8cc6364c6c0686.eot");
src: url("https://db.onlinewebfonts.com/t/1b0449788f78191daa8cc6364c6c0686.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1b0449788f78191daa8cc6364c6c0686.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1b0449788f78191daa8cc6364c6c0686.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1b0449788f78191daa8cc6364c6c0686.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1b0449788f78191daa8cc6364c6c0686.svg#Preston Blair Skip")format("svg");
}
2CSS rules to specify fonts
font-family: "Preston Blair Skip";