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