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