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