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