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