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