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