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