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