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