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