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