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