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