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