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