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