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