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