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