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