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