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