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