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