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