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