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