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