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