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