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