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