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