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