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