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