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