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