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