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