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