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