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