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