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