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