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