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