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