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