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