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