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