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