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