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